I came to know that jquery supports all including old browsers
But I tried to add a placeholder for search box and it is not working in IE8
jQuery(document).ready(function(){
$('#search').attr('placeholder','search....');
});
So I want to know more about cross-browser supports. As said does it work actually or not?
I know the html attribute placeholder
is not supported. But my question is about with jquery.