shadowbox

Using jQuery .load breaks links to other library resources?

I have a simple html page with a div. I am using jQuery to load the contents of an aspx app into the "content" div. Code looks like this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; <html> <head> <script type="text/javascript" src="http://code.jquery.co...

Shadowbox in IE

I'm opening a .flv in shadowbox, works fine in Firefox, but opens below the overlay in IE. I looked on their site, and double checked the <doctype>. That's fine, but still have the problem. Any other ideas? ...

Shadow box overlay hiding flash

I have a site that's mostly made in flash. And the flash triggers shadowbox. But when shadowbox kicks in, the site isn't visible behind the box. Any thoughts? ...

load video in shadowbox on page load

I need to load a video in shadowbox when the homepage loads I need to know what the code would be and specifically where the onload code would go to make this happen Thank you DeZiner76hd ...

flash overlay snagging on underlying divs

Hiya! Has anyone come across this before and know a solution? I'm using Shadowbox to overlay a flash file on my page, but the movement within the flash file causes it to break or "shear" where the movie comes across the divs in the HTML hidden below. The screenshot shows it far better than I could explain ;) If you move the mouse, or...

Dynamically loading a SWF into ShadowBox

FYI, ShadowBox is a javscript media viewer/lightbox. http://www.shadowbox-js.com/ Running into an issue when trying to dynamically load SWFs into my ShadowBox. My script outputs the following HTML: <div id="LightBoxItemList"> <a href="Images/large01.jpg" rel="shadowbox[Mixed];" class="First" /> <a href="Images/Hydro_Sample.swf" rel...

Shadowbox doesn't seem to work

Hi I have an XHTML 1.0 Strict document in which I'm trying to make Shadowbox work. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta name="Content-Type" content="text/html; charset=UTF-8...

Shadowbox loads old href and not new href

I have a code that replaces href's using Jquery, .attr({ href : newpath }); and I am using Shadowbox. After changing the href and loading shadowbox, the shadowbox loads the old href instead of the new one. For example : <a id ="shadowboxlink" href="images/firstimage.jpg" rel="shadowbox">shadowbox link</a> then the jquery would be som...

Jquery and ShadowBox

I cant make the shadowbox work...I have a static html page which has an image that acts as a link to open a swf in the shadowbox. however when I click on the image it opens the swf like any other image file in the browser. The Shadow box doesn't seem to work at all. This is my html page. I am using shadowbox-build-3.0b. Its strange that...

ASP.Net & jQuery - closing a popup

I want to close a ShadowBox popup when the user clicks a button. The popup is showing a separate page in an Iframe. This works fine with a clients-side event on the Cancel button control, e.g. OnClientClick="javascript:parent.Shadowbox.close();" The Ok button, however, has a server-side event, because data needs to be saved. When I de...

jQuery shadowbox video not working in IE7

The shadowbox video plugin is not working in IE7 although it works fine in Firefox and Safari. Any comments would be really appreciated. Site: http://www.carolinedawes.com.au/update/abc-gardening-australia.html HTML: <a href="m/abc-gardening-australia-caroline-dawes.mov" rel="shadowbox;height=272;width=480"> <img src="i/abc-garden...

Why isn't shadowbox working in IE?

The shadowbox I am trying to fix in IE is located here: http://www.carolinedawes.com.au/abc-gardening-australia.html The HTML is <div class="hero-image"> <a href="m/abc-gardening-australia-caroline-dawes.mov" rel="shadowbox;height=272;width=480"> <img src="i/abc-gardening-australia-caroline-dawes-gardening-adelaide.jpg" alt="caroline ...

resize shadowbox with HTML content

I'm using a jquery shadowbox library, wich allows you to show HTML content in a lightbox/shadowbox. (www.shadowbox-js.com) My question is: is there any way to dynamically resize the shadowbox when it's already open (the content becomes bigger). You can set the start dimensions, but it seems pretty hard to change the dimensions later on...

Help with Shadowbox

Hey guys, I'm trying to get Shadowbox to work. Whenever I click the link, it just opens the movie in a new page. Here's the code in the head tags: <script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"&gt;&lt;/script&gt; <link rel="stylesheet" type="text/css" href="shadowbox.css"> <script type="text/javascrip...

Error #2044 on custom flash player using shadowbox

Hi I'm using shadowbox and I am trying to load my video that has a custom skin. But for some reason it can't find my custom flash player. When I don't use shadowbox I can view the video and the skin shows up. Thanks in advance! ...

Is there a way to return a list of all the image file names in a folder using only Javascript?

I have a dropbox account. I put a bunch of images in a public folder. I'd like to display the images using shadowbox. Right now, I'm manually entering the filenames into this html file. Is there a way to dynamically update the gallery when I drag new images into the images folder? I'd prefer javascript if it's possible. If it's not...

Drupal - Redirect success message to shadowbox

I've got a typical webform that submits using the ajax module. How can I redirect the success message to a shadowbox? ...

jQuery, Shadowbox and AJAX

I would like to load some content using AJAX and Shadowbox Basically I would like the user to goto a page in case javascript is off. So this is what I want to do :- 1) Cancel the click event i.e the User must not go to a different page. 2) Load content using ajax function in jQuery 3) Show the content inside a shadow box My code wor...

shadowbox display of html drawn from another page via jQuery.get()

I'm a bit new to the Ajax thing and am hoping you all can suggest which of these two methods is most efficient. Both approaches seem to work, but perhaps there is some better way altogether? thisPage.html wants to display a blob of html drawn from thatPage.html (on the same host) in response to a click on a link. I'm using Shadowbox's ...

jQuery get(), Shadowbox, return the whole html of the containing div

Related to my earlier question (thanks for your response Cryo), I have a further question for the javaScript mavens here. Given an html structure like this: <content> <div entry> <div rubric> <a name> </div> <div content block> <p> <a links> </div> </div entry>...