Using Jquery to overcome CSS support across browser
Hello there,
I am quite under the impression that I can make any CSS property work across the browser ( By that I mean IE6 ) using jquery. So I wrote this,
$(document).ready(function(){
$("Your Selector name").css({'min-width' : '500px'});
});
I guess I have written it right. Am I under wrong impression?
I mean if it supports Opacity property, it might as well support min-width & min-height.
Replies welcome.