Is it possible to write multiple CSS styles on the same line in jQuery
$('.ui-dialog').css("left","475px"); $('.ui-dialog').css("top","215px");
Is it possible to write this in one line, as shown below
$('.ui-dialog').css("'left','475px'","'top','215px'");
jquery css
Justin john
source share