[Solved] Using $.post, $.ajax or AJAX properly in CodeIgniter to call a PHP script

Yes, you will need to put your file inside the libraries folder(if the class is separate from codeigniter or is shared among many controllers, if not a Model would suffice), then create a controller for it. class Ajax_Controller extends CI_Controller { public $statusCode = 200; public $response = array(); public function __construct() { parent::__construct(); if(!$this->is_ajax_request()){ … Read more

[Solved] Javascript error message ‘Uncaught SyntaxError: Unexpected token (‘ [closed]

You’re missing a closing brace to close this else block… else { _gaq.push([‘_trackEvent’, ‘Modals’, ‘skipped’, $(this).attr(‘name’)]); }); This is how it should be… else { _gaq.push([‘_trackEvent’, ‘Modals’, ‘skipped’, $(this).attr(‘name’)]); } }); solved Javascript error message ‘Uncaught SyntaxError: Unexpected token (‘ [closed]

[Solved] Class toggle in jQuery

Fix the toggleClass call, you only need the class name, not the selector: toggleClass(‘over’) instead of toggleClass(‘p.over’). Then, you have two opening script tags: <script type=”text/javascript” language=”javascript”> <script> Remove the first one. Next, you’re binding an event listener to an element that’s not in the DOM yet at the time the script executes. Simple fix: … Read more

[Solved] click function not working on class

In line number 7 you have done a mistake change //para.innerHTMl para.value Why because you are trying to access the textarea element which is having a attribute value not innerHTML to get the data. You can use innerHTML for ‘div’,’p’ tags etc. 1 solved click function not working on class

[Solved] How can I create a star based feedback system for a website?

You could try something like this: In your HTML page, pass arrays containing strings to the Javascript change() function based on which stars should be changed. For example: <img src=”https://stackoverflow.com/questions/28414185/star.png” width=”20px” height=”20px” id=”1″ onclick=”change([‘1’]);”> <img src=”https://stackoverflow.com/questions/28414185/star.png” width=”20px” height=”20px” id=”2″ onclick=”change([‘1’, ‘2’]);”> <img src=”https://stackoverflow.com/questions/28414185/star.png” width=”20px” height=”20px” id=”3″ onclick=”change([‘1’, ‘2’, ‘3’]);”> <img src=”https://stackoverflow.com/questions/28414185/star.png” width=”20px” height=”20px” id=”4″ onclick=”change([‘1’, … Read more

[Solved] Strange JQuery behavior

After spending hours I finally found the reason : 1: In VS2015 code works as expected 2: In VS2017 statement if (1>5) gets resolved to true!!! (Pay attention to space after if 3: in VS2017 statement if(1>5) works as Expected! Now I’m convinced this is VS2017 bug. Reference: mozilla.org A whitespace character is an empty … Read more

[Solved] CSS Propertie change OnClick [closed]

Here’s an example of an onclick event for the one element, which will change its z-index. $(function(){ $(“#one”).click(function(){ $(this).css(“z-index”, 2); }); }); From this you should be able to work out how to do the rest. If not, then look into the use of jQuery more. We’re not here to do the work for you. … Read more

[Solved] How can I validate a regular expression using jQuery Validation plugin?

No need for jQuery. Use the RegExp constructor and catch the exception : try { new RegExp(someString); console.log(‘good’); } catch (e) { console.log(‘bad’); } Demonstration (type something in the input to know if it’s a well formed regular expression) 2 solved How can I validate a regular expression using jQuery Validation plugin?

[Solved] Disable F1-F12 Key in jQuery

there are many ways to do this. 1) use a function like this function DisableKeys() { var ar = new Array(122 , 123); $(document).keydown(function(e) { var key = e.which; if ($.inArray(key, ar) > -1) { e.preventDefault(); return false; } return true; }); } 2) example 2 $(document).keydown(function(e){ if(e.which === 122){ return false; if(e.which === 123){ … Read more