1
我想用jQuery在WordPress中開發簡單的幻燈片。它在除IE以外的所有瀏覽器都很好用。jQuery in wordpress在ie8中效果不好
var blockShow = function(element,nav,duration) {
//alert(element);
container = jQuery(element); // but in this function throw error: Object doesn't support this property or method
}
// this works
jQuery(document).ready(
function() {
if(jQuery('#header-slideshow')) {
blockShow('#header-slideshow');
}
}
);
更新:我忘了說:外面WP它完美的工作。在IE和其他地方,所以它必須是WP中的東西。