Reputation: 22040
I want only to round the left corners of a div using jquery.corner()
Any ideas on getting it done.
Thanks Jean
Upvotes: 0
Views: 166
Reputation: 68476
Round is the default, so to round just the left corners, do the following:
$(".selector").corner("left");
Upvotes: 1