hi All -

I am using the following jquery script to hover and click on table rows:

$(".simplehighlight").click(function() {
    $(this).children().addClass('clicked');

    $(this).siblings().children().removeClass('clicked');
});

$(".simplehighlight").hover(function() {
    $(this).children().css('backgroundColor', '#ffdc87');
}, function() {
    $(this).children().css('backgroundColor', '');
});

'simplehighlight' is the class name of a <tr>. The script works fine in 
Firefox, but the problem comes with IE8. I have around 20 to 25 columns, and 
For hover, it takes some milliseconds to catch up with the cursor, and with 
click, it takes around two seconds. Any suggestions on this?

I am asking this question in this forum, because lot of Coldfusion developers 
use jquery. So trying my luck here too.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340112
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to