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>
link|improve this question

26% accept rate
try changing #ElemenetsToBeRounded to #ClickableRow - you might have to round the td tags... – ryankeairns Jan 24 at 22:24
any luck then?. – Jamie Hutber Feb 29 at 22:42
feedback

2 Answers

I would suggest you to do it through css as now most of the modern browsers support border radius. For old browsers which do not support there are hacks available which are easy to implement. Take a look at this http://jonraasch.com/blog/css-rounded-corners-in-all-browsers.

link|improve this answer
feedback

If you really are only going to use

.corner("rounded 8px")

I would just add in the hover of the css the border-radius code.

table tbody tr#ClickableRow:hover
{
    background-color: #fbf6e7;
    cursor:pointer; 
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.