събота, 9 март 2013 г.

CSS Styling with jQuery

The poplar jQuery library offers an alternative to CSS for styling HTML elements. The CSS way:
div.somediv {
  width: auto;
  margin-right:100px;
}
With jQuery:
$(window).resize(function(){
  $('.somediv').each(function(){
    $(this).css('width', $(this).parent().width()-100);
  })
});

Няма коментари:

Публикуване на коментар