Results 1 to 3 of 3

Thread: Chrome Menu Links to Open Specific Window Size

  1. #1
    Join Date
    Apr 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Chrome Menu Links to Open Specific Window Size

    RE: http://www.dynamicdrive.com/dynamici...rome/index.htm

    I searched for a thread that covered this but I wasnt sure if what I found would work with the chrome Menu

    I would like to Specify the target window size on some of the links but not all

    TIA

  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

    With Chrome Menu, you are at least starting with ordinary links, from the demo page:

    HTML Code:
    <!--1st drop down menu --> 
    <div id="dropmenu1" class="dropmenudiv">
    <a href="http://www.dynamicdrive.com/">Dynamic Drive</a>
    <a href="http://www.cssdrive.com">CSS Drive</a>
    <a href="http://www.javascriptkit.com">JavaScript Kit</a>
    </div>
    Any of the links can be given a window.open() onclick event like so:

    Code:
    <a href="http://www.dynamicdrive.com/" target="_blank" onclick="window.open(this.href,this.target,'width=300, height=350, location=1, menubar=1, scrollbars=1, resizable=1, toolbar=1');return false">Dynamic Drive</a>
    - John
    ________________________

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

  3. #3
    Join Date
    Apr 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much your site is indispensable and a great resource

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
  •