Popup windows work great in IE but not in FireFox

I'm sorry if some of you helpful folks are tired of seeing my questions, but...
I have a page with thumbnails (which float correctly thanks to Altruistic Grandpa) and clicking on each thumbnail opens a new window with a larger version of the photo and some text. It works great in IE - the window opens and closes like it should - but in FireFox it creates a second browser window that has to be manually closed in order to return to the index page.
Any suggestions?
http://acemon.com/features.html
-Ace-

Thank you, Nancy.
Not only did that solve the FireFox problem, it also fixed a minor glitch when previewing in IE.
Every day I learn something new. I just wish I had more days.
-Ace-

Similar Messages

  • Cannot expand viewer for ESPN3. The task bar at the bottom is not visable. It works with Internet Explorer, but not with FireFox

    There is a task bar that should be visible so you can expand the viewer to the full size of your computer screen. I can open up internet explorer and it works, but not in FireFox. This is when using ESPN3, or ESPNWATCH.

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25
    You need to post a link to the website or post relevant parts of the code.

  • AirPort Express works great with PC but not with MAC

    I have a PC and a MAC both able to connect to my AirPort Express in another room and play music. My MAC is a newer MacBook. When I'm running my iTunes library off my PC everything works fine and doesn't cut out. When I connect to my library on my MAC it plays fine for a while than most always cuts in and out and than completely won't work unless I reset the AirPort Express. My PC is running WIRED to my router and my MAC is running WIRELESS.
    Why is this happening? Is it because I use a bluetooth keyboard and mouse on my MAC? Maybe that my MAC is running wireless? You'd think Apple products would work best with Apple products

    Anyone at all? Any settings or anything to be set? Nothing?

  • Why does my Web Handler work with Internet Explorer, but not with Firefox

    I am trying to develop a web page that uses the Simile Timeline (http://code.google.com/p/simile-widgets/wiki/Timeline) with data from SQL Server.
    In initial testing of my timeline I tested it with Example.xml, a static XML file in the correct format to be event data. I wrote the following in the appropriate place within mytimeline's Javascript: -
    var WebHandler = "Example.xml"
    tl.loadXML(WebHandler, function (xml, url) { eventSourceFamily.loadXML(xml, url) });
    This worked fine with both Firefox and Internet Explorer. I then changed the assignment to
    var WebHandler = "GDBTimeline.ashx?Type=Family&Userid=" + getControlValue("input", "hdnUser");
    so that invoked a web handler that could look up the SQL database and return the XML that I wanted, and wrote this web handler.
    This works perfectly with Internet Explorer, but with FireFox the timeline band is blank. Yet when I examine the http traffic with Fiddler2 (http://www.fiddler2.com/fiddler2/) I see that with either browser there is a response from URL
    /GDB_pages/GDBTimeline.ashx?Type=Family&Userid=robertb
    that returns the XML that it is supposed to.
    I have previously used web handlers with Firefox before, with no problems. The Fiddler results conclusively show that the web handler is invoked, and returns the appropriate XML, and this XML is identical to the XML from the static test with Example.xml.
    Where do I start looking for answers? I don't even know if this is a Simile problem, a Firefox problem, or an ASP.NET problem.
    Thank you, Robert.

    Problem solved. The issue: Content Type was not correct.
    Visual Studio creates the web handler with dummy code like this: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    context.Response.ContentType = "text/plain"
    context.Response.Write("Hello World")
    End Sub
    I wrote a database query that set a string variable to the XML I wanted: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    Dim Outstring as string
    ' my logic to fill Outstring with XML
    context.Response.ContentType = "text/plain"
    context.Response.Write(Outstring)
    End Sub
    This works with Internet Explorer. However it's not strictly correct: to make it work with other browsers as well,
    context.Response.ContentType = "text/plain"
    should be
    context.Response.ContentType = "text/xml"
    It now works with IE, FF, and Chrome, and presumably all others.

  • Why does the Java script work on my RSS feed work for Internet explorer but not for Firefox?

    I have finished building the website for my Girlfriend and the only thing left is the RSS feed. It works just fine in IE 8 but in Fire Fox 9 when the widget is clicked a bookmark box pops up and asks if I want to save it as a bookmark. I am not a Java script programer so I am hoping for some help here!! Here is the script:
    <li id="rss"><a href="http://www.susangabrielle.com/1/feed" title="RSS" alt="rss"><img src="/files/theme/rss.png"></a></li>
    The sight is http://www.susangabrielle.com

    Presumably you fixed it, the RSS seems to work for me
    * e.g. http://www.susangabrielle.com/1/post/2012/01/post-title-click-and-type-to-edit.html <br/> although I get a message about missing plugins

  • FP works fine in IE but not in Firefox any more.

    It Used to work in Firefox. I think I tried updating the version I was using. (I can't remember anymore - it's been over a week I've been messing with this trying to get it to run.)
    Have tried  the uninstaller, checked & the files are gone. Reran the installers (including some for past versions)
    Nada
    Tried uninstalling & reinstalling Firefox, then Flash.
    Nada
    This site Used to work fine:
    http://dictionary.reference.com/fun/crossword/index.html
    Now nothing.
    Running Firefox 3.5.2 under Win2000
    Help! please.
    xr

    Problem solved. What happened is that my image was not big enough to be seen in a small window so it appears as if the image was not loaded at all.

  • PHP Script works in Chrome, IE9 but not in Firefox 15

    This page is a PHP script for creating hyperlinks to all files in a directory:
    http://www.checktheevidence.co.uk/audio/index.php?dir=&sort=date&order=desc
    It works fine in IE9 and Chrome, but Firefox "give up" about 3/4 way down the listing the hyperlinks for the files are no longer shown. Weird stuff.
    This issue has been present for a long time

    It's not pretty, is it. The problem is that your page opens &lt;strong> tags without closing them. For example:
    &lt;div>
    &lt;a href="Victoria Derbyshire Cuts off Police Constable talking about The Club in the Police - Radio 5 Live - 13 Sep 2012.mp3" class="w"><b>&lt;strong></b>Victoria Derbyshire Cuts off Police Constable talking about The Club in the Police - Radio 5 Live - 13 Sep 2012.mp3 &lt;/a>
    (1.5 MB) (Modified: Sep 17 2012 11:06:37 PM)
    &lt;/div>
    This causes Firefox to "nest" tags in the page past a maximum depth. After that point, it just dumps text to the page. Similar/related past threads:
    * [https://support.mozilla.org/en-US/questions/846246 Part way through a particular web page, HTML stops being rendered]
    * [https://support.mozilla.org/en-US/questions/929969 text is missing from webpage]
    So just a small fix to your PHP and you should be good to go.

  • Same page with tables works well on IE but not on Firefox or Safari

    This qs may have been asked already but I am new to the forum.
    I have created a page in DW using tables and everything fits beautifully in it. It works really well when tested on IE but all the alignments are way off on Mozilla Firefox and Safari(mac). I cant figure out why this is happening. I would like to site to work well on all 3 browsers.
    here is the page: http://3beespaperie.com/casablanca.htm
    as you can see, the top of the main photo should line up wiht the top of 'details'.  same with http://3beespaperie.com/rajkumar.htm where the top of the photo is in the same table and row as that of the orange text on the right.
    please help,
    Thanks

    Please see the announcement at the top of the discussion list for this forum.  Pick the Dreamweaver General Discussion forum from it, and repost your question there.

  • Chat works fine in IE but not in Firefox - shows "loading" but never does

    Facebook Chat always shows "loading" but never does - I've tried most of the suggested solutions but have yet to find one that works with Firefox - it still works fine in IE..

    Now sorted but I don't know what I did! :)

  • The respond button on eBay works with Internet Explorer, but NOT with Firefox.

    The "Ask a question
    == This happened ==
    Every time Firefox opened
    == Yesterday

    Maybe something is preventing javascripts working. Do you have javascript enabled? (Options > Content)
    Are you running any blocking add-ons like NoScript?
    [[Basic Troubleshooting]]

  • My email program smartzone has suddenly started working on smartzone lite instead of the regular one even though I have it set to work on the regular one. It works fine on IE but not on Firefox

    My email program, smartzone has started coming on as Smartzone Lite even though I have it set to work on the regular Smartzone. It works fine on IE. This problem makes my email list come up with HUGE print and it is very awkward to use. I want the Smartzone regular back. Please tell me what to do.

    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong

  • As webmaster I have a problem, my website made with Frontpage works correctly with IE but not with Firefox. Problem with pictures, menus. must I put something in my HTML-code so everybody who use Firefox se my website correctly?

    Picture pop up dont show!

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • When i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    when i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    Unfortunately, the recording & movie industry does not respect the rights of the people who make them money, and thus you can only use the paid-for content in ways they see fit. Even if I lived in a bunker where no one else could possibly see the movie I paid for, therefor I'm not 'sharing it illegally', I would still not be allowed in a blue moon to copy that movie to DVD for TV viewing. Someone will tell you to get an AppleTV. How about Apple give us one for free? Until this changes, people wanting to use their content in multiple locations will continue to download music & movies via torrents, legally or illegally.

  • Windows 8.1 64bit. Webcam works with "Camera" app but not with Skype.

    I've spent a few hours googling and trying out various things - all listed below. I give up - any ideas??? OS: Windows 8.1 64bitMemory: 32GBWebCam: Microsoft VX-7000. As per subject - the webcam works with the "Camera" app but not with Skype for desktop or for Modern UI (or the Microsoft Lifecam software for that matter).  Already attempted: 1) Uninstall webcam drivers - download latest from microsoft (Windows 7) and install in Windows 7 compatibility mode.2) Close (from taskmgr) anything that looks like it might use Webcam. 3) Run Skype for Desktop in Windows 7 and 8 compatibility modes None of the above work. In Skype for Modern UI the webcam doesn't appear in the drop down in Settings - so I can't even select it. In Skype for desktops (version 6.11.32.102) the webcam is found but instead of image I get "Can't start video. Try closing other programs that might be using your webcam". I see from a bit of googling that various people seem to have the same issue (i.e. Webcam works with Camera app but not Skype) - so I'm hopeful someone has found a workaround / fix to this issue and I've just not had the googling skills to find it  Thanks, - Matt Symes

    OK - I appear to have resolved the issue.  I restricted my google terms to [vx-7000 site:microsoft.com "windows 8.1"] Which uncovered this article: http://support.microsoft.com/kb/933311 I noticed there were a couple of Windows 7 x64 specific registry settings that were mentioned so I checked these and they weren't as per the article. In fact - one of the Registry Keys was already used by other software "AI Charger+" which is some ValueAdd software that came with my motherboard. I uninstalled AI Charger+, uninstalled LifeCam driver. Reinstalled LifeCam driver in Windows 7 compatibility mode. Still not working. I returned to the registry and noticed the settings still differed from the above article. I corrected them (which involved not just amending Data but having to add new Values). I then disabled and reenabled the LifeCam from dvcmgmt.msc I was then able to get video from the webcam in the Skype for Desktop preview screen.    

  • Button hyperlinks work in project preview but not in published .swf

    Captivate 6, button hyperlinks work in project preview but not in published .swf, the cursor changes the “the hand” but the hyperlink does not redirect.
    Any ideas?
    Like I said my buttons work great in preview mode after publishing, one click and the PDF opens in a new browser window. Open the project through the published .swf files and the links will not work.
    Using Captivate 6 on WIndows 7

    Hello,
    Welcome to Adobe Forums.
    Once your project published, add the .swf file in Flash Global Setting :
    1) Right Click on the content (Published .swf file) and click on Global Settings
    2) Go to Advanced Tab and Click on Trusted Location Settings  (Scrool down to see this button)
    3) Click on "Add" button and then "Add file", browse for the Captivate 6 published file and click on OK
    4) Launch the .htm file again (Location where Captivate publish your project)
    Hope this helps !!
    Thanks,
    Vikram

Maybe you are looking for

  • Document 4500016031   does not contain any selectable items

    Hi Friends, I am doing MIGO(godds receipt) and adopted following procedure for MIGO. ME5J----->(Entered my Proj. defn---> executed Select material T-20610. Click the "Assign automatically" pushbutton. Assign materials T-20620 and T-20630 the same way

  • OCI, java.lang.ArithmeticException: / by zero

    Hi, Could someone help me with this? I'm using OCI driver, because database character set is user-defined. There is no problem with connection, but if I open any database objects list or execute any statement I've got this exception: Oracle SQL Devel

  • Character Set Syntax In Creating A New Database

    What is the correct line of syntax for this block of code in order to make the default character set WE8ISO8859P1? I tried the following but the database will not accept the Swedish or French characters. create database DEL1 controlfile reuse logfile

  • Internationalization - quotation marks

    Hi, How do I internationalize quotation marks? Example [http://img42.imageshack.us/img42/64/quotation.png]

  • Missing Apps in iTunes

    I searched the threads and internet to help but could not find an answer to my problem.  If I missed something, please point me in the right direction.  Thanks! I am using iTunes version 11.0.1.12, an iPad 2 and iTouch (iOS 6.1). Yesterday I updated