History of jQuery
jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 41%...
jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 41%...
I have mentioned that jQuery is the library of Javascript functions and since i believe that you are a beginner with jQuery learning and want to know the what is...
jQuery datepicker runs very slow in IE6.It is due to the animation implemented in datepicker.To make it fast we have to add a key with its value ''.For e.g: $('selector').datepicker(...
Bind the onError event. $('selector').bind('onError',{msg:"error occured"},false); This event is triggered whenever error is occurred as below: $("selector").trigger("onError",handler); function handler(e) { alert(e.msg); }
You may be thinking that which is better Javascript or jQuery. Most of us will answer that jQuery is better than the core javascript. However this answer is completely wrong...
You have to keep some points in mind while writing jQuery code: 1.Keep DOM insertion as min as possible.For e.g Instead of inserting multiple <li> elements in DOM, wrap it...
$("table tr").each(function(){ alert($(this).attr("customAttr")); }); Above code will iterate through each tr,but if we want to exclude header tr via jQuery then use the following set of lines: $("table tr").not(":first").each(function(){ alert($(this).attr("customAttr"));...
There is always a question arises in my mind that is my javascript source is secure or not? Since anyone on the net can include my page, and then can...
Lets see a small KB/steps to boot Solaris OS system when both root disks are in maintenance mode and is not coming up in multi-user mode even after reboot. ...
Have you faced a strange error when looking for ethernet settings like its speed/duplex/etc. [root@avivr2 ~]# mii-tool eth0 SIOCGMIIPHY on 'eth0' failed: Operation not supported Try running below ethtool command,...