views:

29

answers:

2

Hello,

I want only to round the left corners of a div using jquery.corner()

Any ideas on getting it done.

Thanks Jean

+1  A: 
$('yourSelector').corner('style tl bl');

read docu for more information (Choose Your Corner)

Andreas Niedermair
This is the same doc thats available on the jquery.corner doc website, the blevel left works, but it does not show the rest of the div
Jean
+1  A: 

Round is the default, so to round just the left corners, do the following:

$(".selector").corner("left");
GenericTypeTea
Could I do a 2px rounded corner?
Jean
AAAAAAAAAAAAA IE....... it works fine with ff and chrome, IE is getting showing up white corners inthe background
Jean
To do 2px: `$(".selector").corner("left 2px");`. No idea why you've got a white background in IE.
GenericTypeTea