Hi all,
I'm trying to load thickbox via wp_enqueue_style and wp_enqueue_script, and it works, but the "Close" link is missing. There is a dark gray bar where the link would have been, so you can click on it to close it, but he "Close" word is missing.
Here's the code I used to generate it:
wp_enqueue_script('thickbox');
wp_enqueue_style('thickbox');
Here's the code generated (at the bottom of my page):
<script type='text/javascript'>
/* <![CDATA[ */
var thickboxL10n = {
next: "Next >",
prev: "< Prev",
image: "Image",
of: "of",
close: "Close"
};
try{convertEntities(thickboxL10n);}catch(e){};
/* ]]> */
</script>
<script type='text/javascript' src='http://dmt.rrc.mb.ca/aramirez/wordpress/wp-includes/js/thickbox/thickbox.js?ver=3.1-20091124'></script>
<script type='text/javascript' src='http://dmt.rrc.mb.ca/aramirez/wordpress/wp-includes/js/jquery/jquery.form.js?ver=2.02m'></script>
Am I missing something?