I have a table row which on hover has background color. Right now, the row background is a squared one. I want to make the corners rounded using jquery corner plugin. http://jquery.malsup.com/corner/
table tbody tr#ClickableRow:hover
{
background-color: #fbf6e7;
cursor:pointer; }
On hover, the row will get background color from CSS and should get rounded corners effect from Jquery Corner Plugin. Is this possible?
$('#ElemenetsToBeRounded').each(function() {
var q = $(this).corner("rounded 8px");
eval(q);
});
This rounds the corners...
<tr id="ClickableRow">
<td>
<a href="http://somesite.com">Go Here</a>
<p> To find about all the interestng animals found in this tourist attractions including
zebra, giraffe etc
</p>
</td>
<td>Call us at 444-444-2322 to register</td>
</tr>
tdtags... – ryankeairns Jan 24 at 22:24