hover effect on Cell text

hover effect on Cell text

riteshritesh Posts: 1Questions: 0Answers: 0
edited May 2012 in General
i have created the data table Dynamically, but i want to show roll-over effect only on first cell of table.. and that will be clickable..
how can i do that. pls help me.

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    $('tbody td:eq(0)').hover( function () {}, function () {} ).click();

    :-)

    Allan
This discussion has been closed.