Results 1 to 3 of 3

Thread: Popup Window Generator & IE opening as maximised

  1. #1
    Join Date
    Dec 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Popup Window Generator & IE opening as maximised

    1) Script Title: Popup Window Generator

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex8/popwin.htm

    3) Describe problem:
    I have used the Popup Window Generator from Dynamic Drive before. It's just what I need.

    I have just used it for a client's webpage but it goes to a full maximised Window in IE8 rather than the size I have specified. It is perfect in Firefox.

    The page is at http://www.andor.co.uk/ima/why.html

    It works when one of the logos is clicked, should open a small window.

    (I had used a earlier version of the script on the "What" page of the same website a year ago, this is fine in IE. Click on any of the green boxes)

    Have I done something wrong? Any help gratefully received

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I'm pretty sure it's the names you are giving for the windows, ex:

    Code:
    onclick="NewWindow(this.href,'Bentley Testimonial','400','200','yes','center');return false"
    IE doesn't like spaces, use an underscore:

    Code:
    onclick="NewWindow(this.href,'Bentley_Testimonial','400','200','yes','center');return false"
    or skip it:

    Code:
    onclick="NewWindow(this.href,'BentleyTestimonial','400','200','yes','center');return false"
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Dec 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    John

    Wicked! You cracked it!

    Interestingly enough it didn't even like hyphens. I removed the spaces and it now works.

    Many thanks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •