Posts

Showing posts from June, 2014

Dynamic resize images in mobile & desktop

 var ww = $("selector").width();     //alert(ww);     $("selector img").each(function () {         var imgwidth = $(this).width();         if (imgwidth > ww) {             $(this).css('width', '100%');             $(this).css('height', 'auto');         }     });

Background Position Fix in I-Pad & Desktop

$(document).ready(function(){     $.backstretch("image name.png"); }); Add Jquery File :- Jquery Backstretch