saquery.com
a web developer' s kung fu…
Categories: jQuery | Add a Comment
This is a simple function to toggle text contents of an HTML element with jQuery. It should be easy to equip the toggleText methode with an array of strings. /* * jQuery.toggleText Plugin. * Copyright (c) saquery.com * Licensed under MIT - http://www.opensource.org/licenses/MIT */ $.fn.toggleText = function(txt){ return this.each(function(){ var _=$(this),_current=_.text(),_txt=txt; if ( _current === [...]
Categories: Nice to know | Add a Comment
It is easy to dive into the world of jQuery. It requires only little knowledge in javascript in order to achieve great results with this JavaScript library. Beginners using Visual Studio will benefit from the so-called Intellisense support for jQuery. http://weblogs.asp.net/scottgu/ explains in detail how to integrate jQuery in Visual Studio.
Categories: Nice to know | Add a Comment
Test Swarm- Distributed Continuous Integration for JavaScriptTestSwarm provides a way for heavy tests on JavaScript code. Test Swarm Walkthrough from John Resig on Vimeo. swarm.jquery wiki source code
It is easy to dive into the world of jQuery. It requires only little knowledge in javascript in order to achieve great results with this JavaScript library. Beginners using Visual Studio will benefit from the so-called Intellisense support for jQuery. http://weblogs.asp.net/scottgu explains in detail how to integrate jQuery in Visual Studio.
Categories: jQuery | Add a Comment
It seems that jQuery 1.5 is near. http://blog.jquery.com reported that a release candidate of version is available for download. So far the jQUERY 1.5 BETA 1 CHANGE LOG This is a concise change log – full release notes will be coming with the final 1.5 release. Rewrite of the Ajax module by Julian Aubourg. This is the most significant change in this release and brings [...]
Categories: jQuery | Add a Comment
There is a global switch. If this is set to false jQuery will prevent browser cache usage for Ajax-Requests. The following jQuery.ajaxSetup methode call will disable cache for all Ajax requests. $.ajaxSetup ({ cache: false });
Delete all Table Rows When trying to fade out and delete a table row you will realize that the table rows can not hide slow. The trick is to hide the table cells as follows. OPTIONgroup_idgroup_member Delete Row02 Delete Row21 Delete Row32 Delete Row03 Delete Row24 Delete Row25 Delete Row26
Categories: english | Add a Comment
ipad-palmIt is nice to know that jQuery will come on different Mobile devices such as iPad, iPhone, Palm and Android. source: http://jquerymobile.com/Take a look at http://jquerymobile.com/
This jQuery Plugin extends a Html TextArea Element so that it can handle Tab and Alt+Tab keypress events. It can be usefull to edit and format HTML Code.
Identify an object as type of array in Javascript.