[jQuery] IE7 (jQuery/Interface) with TransferTo set the IE window to background (minimalize!?)
Hi,
If got a strange problem with IE7
In FireFox it works good and in IE7 with more then 2 tabs also but
when you have a single window in IE7 and calling this function the
whole IE window goes to the background just like when you use ALT-TAB
or minimalize the window..
What could it be!?
function:
function openAlbum(containerId, albumId) {
if($('#popupContainer').css('display') == 'none') {
$('#'+containerId).TransferTo(
{
to:'popupContainer',
className:'albumContainerBig',
duration: 400,
complete: function()
{
$('#popupContainer').show();
var strQuery = "function=loadAlbum&albumId="+albumId;
POSTRequest(strQuery, 'albumContainer');
}
}
);
}
this.blur();
$('#windowClose').bind(
'click',
function()
{
$('#popupContainer').TransferTo(
{
to: containerId,
className:'albumContainerSmall',
duration: 400
}
).hide();
$('#windowClose').unbind('click');
}
);
}