Tuesday, September 29, 2009

JQuery Example: Hiding alt attribute tooltips in Internet Explorer

Snippet to hide alt tooltips using Javascript:

$(document).ready(function() {
if ($.browser.msie) {
$("img").removeAttr("alt");
}
});

0 comments:

Blog Archive

About Me