preventDefault not firing on onkeyup event
Simple one. $(document).on('#element', 'keyup', function(event) { if (event.keyCode == 13) { event.preventDefault(); //do some other stuff } }); This doesn’t…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Simple one. $(document).on('#element', 'keyup', function(event) { if (event.keyCode == 13) { event.preventDefault(); //do some other stuff } }); This doesn’t…
I recently wanted to add a Zend library to a project without adding the entire framework. I found that internally,…
So you want a little funky AJAX loader? Add this to your JS main core file…: $(document).ready(function() { //initiate an…