I have:
<input name="ShowDeleted" type="checkbox" />
<label for="ShowDeleted">Show Deleted</label>
and in my JavaScript, I have:
$('input[type=checkbox]').button();
The way that I call that I call jQuery is:
<script src="http://www.google.com/jsapi"></script>
<script src="myGoodness.js"></script>
And then the Javascript is:
google.load("jquery", "1");
google.load("jqueryui", "1");
var myLoadCallback = function() {
$('input[type=checkbox]').button();
};
google.setOnLoadCallback(myLoadCallback);
Q: Why am I not seeing a jQuery UI styled checkbox? Is it because myLoadCallback is being called after jQuery loads but before jQuery UI loads?
In Firebug, I see that the input has class ui-helper-hidden-accessible added to it.