我将一个元素切换回屏幕。它工作得很好但不在资源管理器中。如何使它兼容资源管理器。你能帮忙吗?
请参阅我的示例:
/*START makes text-over-photo div collapse and expand horizontally*/
$(document).ready(function() {
$("#togglebutton").click(function() {
var $container = $('#text-over-photo-container');
$container.toggleClass('hide2');
});
});
$('#togglebutton').click(function() {
$(this).toggleClass('glyphicon glyphicon-remove');
$(this).toggleClass('glyphicon glyphicon-plus');
});