I'm using Mathias Bynens's rather good jQuery placeholder plugin to display placeholders in my site in browsers that don't support it natively. I'm calling the plugin using a custom version of Modernizr in the footer of the page, immediately after the Google Analytics code. I'm combining it with a script (described in this Stack Overflow answer) to display PNGs in IE6.
Modernizr is called in the header, and the site also uses Typekit. jQuery is only called when the placeholder functionality is missing as it isn't actually needed otherwise.
The relevant code—which I'm calling in the footer of a WordPress blog—looks like this:
1. Fix PNGs:
s.parentNode.insertBefore(g, s)
}(document, 'script'));
function fixPngs() {
for (i = 0; i 0) {
fixPng(a, document.images[i])
}
}
}
function fixPng(a, b) {
b.src = "http://cdn.donaldjenkins.com/media/themes/belgravia/2/spacer.gif";
b.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"
a "', sizingMethod='scale')"
};
2. Add placeholders:
Modernizr.load({
test: Modernizr.input.placeholder,
nope: ["http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", "http://cdn.donaldjenkins.com/wp-content/themes/belgravia/js/placeholder.js"],
complete: function () {
$('input, textarea').placeholder();
}
});
3. Call PNG script
fixPngs();
Unfortunately, the placeholder displays in IE6 and IE9, but not in IE7 or IE8. I've tried setting up a html sandbox site that replicates the resources described above, to try and pinpoint what was causing the issue—but I'm getting the same problem. I've tried other placeholder plugins, with the same result.
EDIT: After Mathias Bynens's helpful response, and after testing whether placeholder jQuery plugins worked without Modernizr, I've concluded it's a Modernizr issue: if the placeholder plugin and jQuery are loaded systematically, without using Modernizr, the placeholders display in all browsers—when loaded via Modernizr, they display in IE6 and 9, but not IE 7 and 8.
I've tried switching from a custom version of Modernizr to a development version, but the result remains the same.