Results 1 to 2 of 2

Thread: 2 actions in 1 link

  1. #1
    Join Date
    Dec 2007
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation 2 actions in 1 link

    Hi. This is the link right now:
    HTML Code:
    <a href="javascript:flowertabs.expandit(5)" class="boldbuttons green" href="javascript:ajaxpage('downloads/external/rats.htm', 'rightcolumn');"><span>Download</span></a>
    I know it isn't going to work now, but how do i combine the 2 'href''s into opening up the right-column scripts and also the fifth tab?

  2. #2
    Join Date
    Jun 2007
    Posts
    543
    Thanks
    3
    Thanked 78 Times in 78 Posts
    Blog Entries
    1

    Default

    try :
    Code:
    <a href="#" onclick="flowertabs.expandit(5); ajaxpage('downloads/external/rats.htm', 'rightcolumn');" class="boldbuttons green" ><span>Download</span></a>
    or mabey (but less likely):
    Code:
    <a href="javascript:flowertabs.expandit(5);ajaxpage('downloads/external/rats.htm', 'rightcolumn'); " class="boldbuttons green" ><span>Download</span></a>
    [Jasme Library (Javascript Motion Effects)] My Site
    /\/\@§†ê® §©®¡þ† /\/\@|{ê®
    There are 10 kinds of people in the world, those that understand binary and those that don't.

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
  •