i've got several pictures surroundes by a-tags and when you click on them, the link of the a-tag should be opened in a dialog, what works fine, except in IE8 (IE9 works fine)...
$('a.modal').each(function() {
var $link = $(this);
$link.click(function() {
var $dialog = $('<div></div>')
.load($link.attr('href') + ' #content')
.dialog({
autoOpen: false,
modal:true,
width: 762
});
$dialog.dialog('open');
return false;
});
});
there are no visible errors in the console. somebody might has an idea?