How to re size div from 4 co ordinates using jQuery?
can any one have any idea how to re size div fr开发者_如何学运维om 4 co ordinate using jquery?
Well, provided that it's already have position:relative you can use:
$('$your_id').left = 123;
$('$your_id').top = 123;
$('$your_id').width = 123;
$('$your_id').height = 123;
精彩评论