Force a Page Reload This will forcefully reload the current page. No jQuery needed here.
Tag Archives: jquery
How to Refresh/Reload a Page using jQuery
I have seen this question asked in many forums, however the solution presented worked on selected browsers only. Here’s a solution I have tested that works on IE7, FireFox 3 and Chrome. Hopefully it should work on other browser versions as well!
Submit forms when CTRL+Enter is pressed in a textarea using jQuery
This is how we add that functionality to our websites using jQuery: $(‘textarea’).keypress(function(e){ if (e.ctrlKey && e.keyCode == 13) { $(this).closest(‘form’).submit(); } }); [ad code=4]
JQUERY – superfish menu / submenu
Superfish is an enhanced Suckerfish-style menu jQuery plugin that takes an existing pure CSS drop-down menu (so it degrades gracefully without JavaScript) and adds the following much-sought-after enhancements: Suckerfish-style hover support for IE6. The class added is “sfHover” by default but can be changed via the options object, Timed delay on mouseout to be more …
Jquery tree – jsTree
What is jsTree? jsTree is a javascript based, cross browser tree component. It is packaged as a jQuery plugin. jsTree is absolutely free (licensed same as jQuery – under the terms of either the MIT License or the GNU General Public License (GPL) Version 2).
jquery tablesorter
http://tablesorter.com/docs/#Demo [ad code=1]