please help... I am creating a web application in which i need to set zoom level of browsers to default when it is less than 1... I had tried jquery resize() function that won't be helpfull to me because i m not getting how to get the window width in pixels any help will be appritiated... thanx...
var winWidth = $(window).width();
$(window).resize(function() {
if (winWidth>"1500")
{
//how can i pass the values again to the window width so dat it will reset to default
}
});