thickbox

Flash overlays thickbox on Internet Explorer

霸气de小男生 提交于 2019-12-08 03:45:37
问题 Here's my code: I've got a flash slideshow on my page. I've used thickbox for login but when someone clicks on the login, the flash overlays thickbox. I've managed to solve the problem on Firefox, but nothing seems to work on Internet Explorer. 回答1: You need to use one of the following attributes in order to get Flash to sit "within" the DOM rather than over it. wmode=transparent -or- wmode=opaque Comes with the disadvantage of breaking a number of features. 回答2: spender is correct, but he

Flash overlays thickbox on Internet Explorer

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 15:06:49
Here's my code: I've got a flash slideshow on my page. I've used thickbox for login but when someone clicks on the login, the flash overlays thickbox. I've managed to solve the problem on Firefox, but nothing seems to work on Internet Explorer. You need to use one of the following attributes in order to get Flash to sit "within" the DOM rather than over it. wmode=transparent -or- wmode=opaque Comes with the disadvantage of breaking a number of features. spender is correct, but he didn't explain it much. wmode is an attribute that gets set in the html when you embed the swf, and it needs to be

IE loses focus on input field in modal

我怕爱的太早我们不能终老 提交于 2019-12-06 09:17:14
I've got a fairly complex web app which I've condensed down to the following two HTML pages, and the problem still exists. The problem? The thickbox modal's (iframe) input field loses focus after a second (or less) in IE (8 & 9). It only occurs when it's in the modal. If you load the page on its own, focus is not lost. I've tried both jQuery 1.4.2 and 1.7.2, and the issue occurs with each. I'd set this up as jsfiddle but don't think it supports being able to trigger a second page. Have set it up so you can see it working here Base page: <!DOCTYPE HTML> <html> <head> <link href="http://jquery

How would you trigger an event when a ThickBox closes?

谁说胖子不能爱 提交于 2019-12-04 06:23:30
This question is Semi-related to Wordpress, but has applications elsewhere. Basically, I'm trying to make it so when someone exits out of a Thickbox, it triggers an event elsewhere on the page. Editting the Thickbox file isn't an option. It's a bit complicated since Thickbox isn't written that way. But maybe you can use some tricks to do it. It's not the recommended solution but you can "rewrite" the close function. Something like: var old_tb_remove = window.tb_remove; var tb_remove = function() { old_tb_remove(); // calls the tb_remove() of the Thickbox plugin alert('ohai'); }; Works \o/ http

Stop a postback in javascript

戏子无情 提交于 2019-11-30 23:27:03
i have an ASP webform with a JQuery Thickbox, i have an image that opens the thickbox when user click. once open the thickbox it shows me a grid with several rows and a button to select one and after the user select the record it returns to the main page the recordselected and cause a __doPostBack() BUT! sometimes in IE6 it stay loading the postback and never ends i have to refresh the page and when it refresh it shows everything fine. but i dont want the postback stay loading AND it does not happend always. i have to call a __doPostBack because i need to find info related to the selected

jQuery .ready in a dynamically inserted iframe

若如初见. 提交于 2019-11-25 22:47:24
问题 We are using jQuery thickbox to dynamically display an iframe when someone clicks on a picture. In this iframe, we are using galleria a javascript library to display multiple pictures. The problem seems to be that $(document).ready in the iframe seems to be fired too soon and the iframe content isn\'t even loaded yet, so galleria code is not applied properly on the DOM elements. $(document).ready seems to use the iframe parent ready state to decide if the iframe is ready. If we extract the