X10nD
X10nD

Reputation: 22040

I want to do a left round corner using jquery.corner()

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

Answers (2)

djdd87
djdd87

Reputation: 68476

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

$(".selector").corner("left");

Upvotes: 1

user57508
user57508

Reputation:

$('yourSelector').corner('style tl bl');

read docu for more information (Choose Your Corner)

Upvotes: 1

Related Questions