Results 1 to 2 of 2

Thread: Help with changing link from popup to url

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

    Default Help with changing link from popup to url

    Hi!

    Can anyone advise as to why when either one of the three links:

    -Things To Do
    -Upcoming Events
    -Join Us

    invokes a pop-up rather than proceeding to the requested link?

    Many Thanks in advance,
    Regards,
    iflyjetz

    http://getmeonline.ie/fitzsimons/index.html

  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

    It's this:

    Code:
    <div id="infobar"> <div id="imageMenu">
          <ul>
            <li class="thingstodo"><a href="things-to-do/index.html"></a></li>
            <li class="upcomingevents"><a href="upcoming-events/index.html"></a></li>
    
            <li class="joinus"><a href="join-us/index.html"></a></li>
          </ul>
        
        <script type="text/javascript">
    			
    			window.addEvent('domready', function(){
    				var myMenu = new ImageMenu($$('#imageMenu a'),{openWidth:600, border:2, onOpen:function(e,i){alert(e);}});
    			});
    		</script>
    
     
    </div></div>
    That alert(e) (scroll the above code block to see it) should probably be:

    Code:
    location = e
    - John
    ________________________

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

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
  •