jQuery Datepicker running slow in IE6
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(...
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,...
We can login into the console from RSC by using console command : rsc> console Console session already in use. If console is already in use, we can use below...
Hi Friends, I am happy to introduce you all to my new book "Unix Administration Quick Guide" based on Solaris Operating System. The book is now completed and will be...