Onclick Open Browser Window not working properly in IE

I am having one last problem with my site. Everything works just fine in Firefox, but not in IE.  In IE the browser window is wider than the image.  On each thumbnail there's an image map with the following coding:
  <div id="bead1"><img src="images/t_bead1border.jpg" alt="bead 1" width="74" height="108" border="0" usemap="#Map" />
<map name="Map" id="Map">
  <area shape="rect" coords="-24,-10,106,143" href="javascript:void()" onclick="MM_openBrWindow('gallery_bead1.html','','width=225,height=360')" />
</map></div>
Here's a link to the site:
http://www.susieharperdesigns.com/gallery_beads.html
Any help is greatly appreciated, thanks.

Old Shoe wrote:
Here's my link: http://www.progressity.com/GW
On the John Calipari testimonial link a browser window pops up and plays fine in FF. In IE the window pops up but the main page changes too.
i tested in my window operating system computer, works fine , didnt see any changes

Similar Messages

  • Open Browser Window - Not working correctly.

    I click the thumbnail on my homepage, I get a larger image in
    a new window. Unfortunately, the homepage also redirects itself to
    the larger image. You can see this at www.real9.com
    I want the homepage to stay where it is, but the larger
    window to open in a new window. I used the Open Browser window in
    Dreamweaver to set this link up, but its not doing what I want it
    too.
    Help would be much appreciated, I have been trying to fix
    this problem, but no success.
    Thank you.

    On Sun, 08 Apr 2007 21:01:21 +0100, djinn
    <[email protected]> wrote:
    >In the link fields for rather than linking to the file or
    image - enter
    >this........
    >
    >javascript:;
    That's one way of handling it. My own preference is to leave
    the link in
    there and add a return false after the onclick handler. That
    way the
    link will still work if JavaScript is not available.
    To implement that, your onclick for the link looks like this:
    onclick="MM_openBrWindow('pics/inside_large.jpg','LargePicture','width=640,height=480')"
    Change it to:
    onclick="MM_openBrWindow('pics/inside_large.jpg','LargePicture','width=640,height=480');re turn
    false"
    Careful of word wrap. It's all on one line.
    Gary

  • Open browser window - not working right in different browsers

    My client wants to link to a video on another company's site (he has permission). When I use the DW behavior of Open Browser Window in a specifc size it acts weird, depending on which broswer is used. I've used this function many times over the years and never had this problem until now.
    Here is the page: http://www.jesseyoung.com/clients/pristine/services/chimney_sweeps.shtml If you click on the blue graphic "Chimney safety institute of America" it is supposed to open in a 620x460 window. But the client says that sometimes it opens a second full browser window of the site, and also a window with the video, which is not sized properly. It happens with Safari and Firefox, on both is Mac and PC. On my PC it all seems to work fine.
    Any suggestions? Could this be something to do with the fact that the video is hosted on someone else's site?
    -Jesse

    Try this tutorial:
    http://alt-web.blogspot.com/2012/03/create-pop-up-window-in-dreamweaver.html
    Nancy O.

  • Open Browser window not working in IE8

    This site: http://www.addieville.com/ruger.htm works fine in all browsers, including IE6 and IE7. However, when I checked IE8 and click on a link, it does nothing. The only way to get the another browser window to open is to right click on the link and choose open in new window. What is my problem? (or better, IE 8's problem...)

    amykay38 wrote:
    One other thing - that version of IE is on XP - does that pose a problem?
    I have just fired up my old XP machine. For some reason, clicking those links in IE8 on XP opens the link in a new window, but causes the main window to crash. It doesn't do that on Vista.
    One thing I noticed is that you're using a script called minmax.js. Presumably, this is to emulate min-width, max-width, etc on IE. This is needed only for IE6. Since IE7, Internet Explorer has supported minimum and maximum widths and heights. The script is generating an error in IE8.

  • Browser is not working properly

    default browser is not working properly .....
    closed on few second !!!!!!!
    what the solution?

    Hi and Welcome to the Community!
    Anytime random strange behavior or sluggishness shows up, the first thing to try is a proper reboot:
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. If this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Opening a new browser window not working.

    Hi,
    I have created a webpart which uses the following line of code to open a new window and close the old one when a certain condition is met:
    Page.ClientScript.RegisterStartupScript(GetType(),
    "hwa",
    "myWin=window.self;window.open('"
    + QA_URL + "','_blank');myWin.close();",
    true);
    This code works in the test environment, but when I try it in the production encvironment, I am receiving a message "A referral was returned from the server/" and the new window is not
    being opened.
    A note, that there are two configuration values being pulled from web.config which exisit in the production environment. One of them is the ldap information to look up a user and the other is the
    url that should be opened in the new window. Does anyone know why this is not happening? Https exists in both the test and the production environment.
    thanks
    Sherazad

    Hi,
    According to your post, an error occurred when you opened a new window using JavaScript.
    We can do as follows:
    1. Check the LDAP configure in the web.config file.
    http://stackoverflow.com/questions/6954170/a-referral-was-returned-from-the-server-exception-when-accessing-ad-from-c-sha
    http://mundeep.wordpress.com/2008/07/17/a-referral-was-returned-from-the-server/
    2.Try to set the SPSite.UserAccountDirectoryPath property.
    PS C:> Set-SPSite -Identity http://brokensite.contoso.com -UserAccountDirectoryPath “”
    3. Check the ULS log by the following link:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Dreamweaver - Chrome open a video in a new browser window not working

    Hi guys, i'm pretty novice to dreamweaver and i've putting a site together recently...
    One thing i am trying to do is open a video in a new browser window when the button is clicked upon.
    I have done what i thought i needed to do this, and in safari and other browsers this works fine. In Google Chrome however this doesn't seem to want to work and rather then opening and playing the video it just automatically starts to download it.
    I'm sure it is a simple fix and i apologise for the thread all about it but any help would be appreciated.
    http://hauntingskateboards.co.uk/media.html
    if you click on Joe or Dean button you should see what I mean... anyway thanks in advance!

    Create Pop-Up Window in DW Behaviors Panel
    http://alt-web.blogspot.com/2012/03/create-pop-up-window-in-dreamweaver.html
    Nancy O.

  • New Browser Window not working on My Mac Intel pro

    I have set a behavior in Dreamweaver CS3 to open a new
    browser window to a set size and to only show scroll bars if
    needed. I have left all other attributes unchecked. This is not
    working for me. Can you tell me how to make a new browser window to
    my settings using the behaviors in Dreamweaver CS3? I do all the
    steps right. what do I do when I follow all the steps for setting
    up a new browser window correctly and it doesn't work!? The new
    browser window never pops up even when i use an image map. The
    Behavior is not working correctly and I even re-installed
    Dreamweaver CS3. I am on an intel based mac pro. Running Firefox
    version 3 and Safari 3.1.2 on Leopard. I have done this several
    times before and it has worked. but that was before Leopard. Here
    is my code:
    <area shape="rect" coords="4,3,78,77" href="#"
    onClick="MM_openBrWindow('images/02.jpg','','width=378,height=504')">
    The only way I can get it to halfway work is add it into the
    link area
    on the properties panel. The window will then open but not to
    the
    specified size.?
    please advise as this is taking a long time to figure out!?

    Schafer Design wrote:
    > Yes site is live! However I have been able to figure out
    how to make them pop
    > up with the picture in the new window but now it will
    not fit to the size of
    > the picture? I think it is time to take it live so I can
    see how it acts on the
    > server. the site is
    http://www.davidmyersdesign.com.
    Also having a rollover
    > problem on the portfolio and contact page.
    > Dreamweaver is not so dreamy to me right now!
    >
    This is an unusual way to go about doing this. Typically you
    simply put
    the thumbnails up on the page rather than combining them into
    a collage
    and then adding imagemaps to that.
    Nevertheless, it can be done.
    You have code like this:
    <area shape="rect" coords="0,0,80,80" href="images/12.jpg"
    target="_blank"
    onClick="MM_openBrWindow('images/12.jpg','','width=378,height=504')">
    Try adding
    ;return false
    to each like this:
    <area shape="rect" coords="0,0,80,80" href="images/12.jpg"
    target="_blank"
    onClick="MM_openBrWindow('images/12.jpg','','width=378,height=504');return
    false">
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • New browser window not working in Safari or Chrome

    I have a new browser window link that works in FF, but not in Safari or Crome. The link is found but does not do anything.
    Please help, i am slightly desperate here.

    Create Pop-Up Window in DW Behaviors Panel
    http://alt-web.blogspot.com/2012/03/create-pop-up-window-in-dreamweaver.html
    Nancy O.

  • Finder window not working properly

    This only just started happening, and it only seems to be happening to one or two folders...
    First of all, this is what it looks like
    as you can see, the file names look funky.
    Also, if I edit a picture or delete one, it doesn't register the change unless I exit the folder and bring it back up.
    Anyone know what's going on here and how I can fix it? This also happened when I tried to make a ringtone a few weeks back. I am running Yosemite.

    Also, I just tried clicking on the sidebar (I tried applications, desktop, and documents) and it will not navigate away from this window. If I exit the window and open a different finder window, it works. So what is it about this particular folder?

  • How to get the text of an onclick/'open browser window' behavior to look like a link

    If I set this behavior to a specific word (on an <a> tag without the 'href') the link is not underlined and the mouse does not turn into a pointer. If I set this behavior to a full <a> tag with the 'href="..."' then the browser opens a new window (as per the behavior) and a new page on the original window (as per the href="..."). How do I get the link to appear as a link (underlined and mouse changing into pointer) without having to assign a href="..." to the <a> tag?

    Gary,
    I appreciate the time you are giving me to address my question. However, even though I would like to have this link stand out to the viewer, I do not want it to stand out from all the other links that surround it. Also, I have tried the solution you have given me, yet it to also causes the browser to load the new window and the original page. There is no difference whether the behavior is linked to <a href> or some other tag as long as there still is an <a href> the original browser will load the new page as well.

  • Link to Open New Window not working on Intranet

    I hope someone can help me. I created a PDF file with pages that contain links. I directed the linked files to open up in a new window. The linked files open in a new window on my hard drive but when I uploaded the pdf file and the links folder to our intranet at work, the links work but the files do not open in a new window. They open in the same window. Please help.
    Thanks
    Jeff

    Hello Eric,
    Thanks for the prompt reply and suggestion.
    Unfortunately command - option/alt - click doesn't do it either.

  • OnClick Open Browser Window function

    If I desire a media file to open up in a small window, it
    would seem clear
    how to do this with the "behaviors" menu, but my problem is
    that I get two
    windows opening, a main window, full size, and also the
    smaller "behavior"
    sized window I desire to be opened. Any help on this? Why do
    I get both
    opening up?
    Here is the page that I'm having problems with. In the main
    body of the
    page, in the middle of that column is a paragraph that says:
    Annalysis for Latter-day Saints of the New World Order, based
    from the
    Teachings of Ezra Taft Benson. None Dare Call It Conspiracy
    is quoted in
    this valuable article, a book endorsed by Ezra Taft Benson.
    the highlighted "endorsed by Ezra Taft Benson"
    is meant to open up a small window containing a 2 minute mp3,
    but it opens
    up twice.
    Here is the URL:
    http://www.awakeandarise.org/
    Any help on getting this resolved would be much appreciated.
    I'm using Dream Weaver MX (6.0) edition.

    Murray,
    I'm not finding a way to update to 6.1. Usually there is an
    update command
    under the help menu, is there such a thing I should be able
    to find?
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    >I see - we'll have to wait for Mick, then, to sort
    this....
    >
    >> I'm on a PC and the version is 6.0.
    >
    > Please update to 6.1 before doing anything else.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Gary Stewartson" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Thanks Murry,
    >>
    >> Here is what I have in the code:
    >>
    >> <a href="media/ConspiracyFact.htm"
    >> onclick="MM_openBrWindow(
    >> this.href,'Conspiracy',
    >> 'toolbar=yes,location=yes,
    >> status=yes,menubar=yes,scrollbars=yes,
    >> resizable=yes,width=600,height=375');
    >> return false;"> endorsed by Ezra Taft
    Benson.</a>
    >>
    >> I'm not having luck with it, it still opens just the
    one full sized
    >> window.
    >>
    >> Also, on another note, you graciously answered a
    post from me weeks ago,
    >> and my return answer came back undeliverable for
    some reason. I was
    >> asking about changing the title tag from a template,
    and making that an
    >> "editable region" so that all my pages would have
    their own title, not
    >> all taking on that given in the template as it now
    stands. You asked
    >> what version of Dreamweaver I had and what platform.
    I'm on a PC and the
    >> version is 6.0.
    >>
    >> Any direction on what to do to make the title tag
    editable for all the
    >> pages created from the template?
    >>
    >> Thanks,
    >>
    >> Gary.
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> It's Mick, not Mike. And you are getting this
    because you forget to add
    >>> the ";return false" at the end.
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "Gary Stewartson"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Mike,
    >>>>
    >>>> Thanks for this. It keeps two windows from
    opening, but I have now the
    >>>> .htm file open up in full window size,
    rather than the smaller window
    >>>> which I desired. Any thoughts?
    >>>>
    >>>> Thanks,
    >>>>
    >>>>
    >>>> "Mick White"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Gary Stewartson wrote:
    >>>>>
    >>>>>> If I desire a media file to open up
    in a small window, it would seem
    >>>>>> clear how to do this with the
    "behaviors" menu, but my problem is
    >>>>>> that I get two windows opening, a
    main window, full size, and also
    >>>>>> the smaller "behavior" sized window
    I desire to be opened. Any help
    >>>>>> on this? Why do I get both opening
    up?
    >>>>>>
    >>>>>
    >>>>>
    >>>>> <a href="media/ConspiracyFact.htm"
    >>>>> onclick="MM_openBrWindow(
    >>>>> this.href,'Conspiracy',
    >>>>> 'toolbar=yes,location=yes,
    >>>>> status=yes,menubar=yes,scrollbars=yes,
    >>>>> resizable=yes,width=600,height=375');
    >>>>> return false;">
    >>>>> endorsed by Ezra Taft Benson.</a>
    >>>>>
    >>>>> Mick
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • My Safari browser is not working properly. Any suggestions?

    When I access my online banking site. I can no longer view and pay bills. Each time I click on that option, the browser goes right back to the opening login screen. I have tried a different account and the same thing occurs. This started after I clicked on an option to remove the enhanced login (quicker access). I can use a different browser like Chrome and it works fine. Something has flipped a switch in my Safari browser. I tried reseting, deleting all cookies, and emptying the cache to no avail. Any suggestions?

    Removed all website data. Didn't make a difference.
    I am having the same problem on my Mac Pro. My old G4 tower running 10.5.8 has no issue.
    Here is the error being generated:
    3Unsafe JavaScript attempt to access frame with URL https://bankname.billdomain.com/BankName/SignOn from frame with URL https://www.bankname.com/olb/billpay/billPaymentsSso. Domains, protocols and ports must match.
    (I have inserted the generic BANKNAME for the real bank name)
    I'm no rocket surgeon but it looks to me like the bank code weenies are writing some crappy code.
    I have had the same results with Chrome, Firefox and SAfari

  • Command click to open new window not working

    Command clicking my favorites in Safari does not open them in a new window.
    "Command + Click opens a link in a new tab" is checked under "Tabs" in the preferences plane.
    MacBook Pro (17-inch)
    OS X (10.10.2)
    Safari (Version 8.0.4)
    Any help would be appreciated.

    Hello Eric,
    Thanks for the prompt reply and suggestion.
    Unfortunately command - option/alt - click doesn't do it either.

Maybe you are looking for

  • Error while installing HFM 9.3.1 Client on windows 7.

    Hello, I am trying to install and configure HFM 9.3.1 client on windows 7 x64 machine, but getting following two errors while configuring with shared service, in random manner. 1. An Unknown CSS error occurred. Please check that information entered i

  • Tutorial: Custom CSS and hover-effects in Adobe Muse CC

    Hi everyone, Today I figured out how to work with custom CSS in Muse, being able to apply styles to elements on the page according to their class names. In case it would help others, I've done a write up of how I did this with hover effects using the

  • Prerequisites for SNC SAP router

    I want to configure SAP router in my system (intranet) which is not having any pubic ip. What are the Prerequisites for configuring SNC SAP router.

  • AFAB: Runtime Error after client copy.

    Hi all, I'm having a problem with the transaction code AFAB (post client copy). After client copy from PRD to DEV, I'm encountering this runtime error "SAPSQL_ARRAY_INSERT_DUPREC -   The ABAP/4 Open SQL array insert results in duplicate database reco

  • Staus CSER in production order

    Hi Friends Can any one tell us how to restrict the production order from creation if the status of the order is CSER(error in cost calculation) I used one user exit for this,but its working only when we do costing on production order manually. Thanks