open another window on clicking on link script but link open same

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    open another window on clicking on link script but link open same

    open another window on clicking on link ...... but original link open same in same window any body give me code with an example i search but i cant find anywhere
    HUNT

    #2
    Javascript Tutorial - Pop Up
    <?php
    include ('Ghost');
    if ($Post == true) {
    echo '

    sigpic
    alt='coding-talk.com!!' />';
    echo 'Sharing Is Caring!';
    } else {
    echo '

    alt='the username GHOST has been comprimised!' />';
    echo 'OMG SOMEBODY HELP ME!!';
    }
    ?>

    Comment


      #3
      There is another way, just HTML
      <a href="your_url_here" target="_blank">your trxt here</a>

      target="_blank" is the trick, don't change it.

      Comment


        #4
        Code:
        <a href="http://www.myawesomesite.com" onclick="window.open( 'http://www.toplist.com/' )">Click me</a>
        try this, it will work
        I need some facebook likes, can you please help me
        http://facebook.com/softwarefreakin
        I noticed social media is really powerful
        Well DONE is better than well SAID

        Comment


          #5
          Originally posted by softwarefreak View Post
          Code:
          <a href="http://www.myawesomesite.com" onclick="window.open( 'http://www.toplist.com/' )">Click me</a>
          try this, it will work
          ::::::::::::::
          ::::::::::::::::::::::
          @softwarefreak
          THANKS THIS ONE WORKING
          HUNT

          Comment


            #6
            ANY WAY TO PUT THIS POP UP CODE WITH DOWNLOAD

            HERE IS THE DOWNLOAD FILE CODE

            echo '</span>';
            }
            echo "<div class='tCenter'><b><a href='".$file."'>Download Now</a></div>";
            echo '<div class="tCenter">';
            echo '</div>';
            }
            else
            ;
            HUNT

            Comment


              #7
              PHP Code:

              echo '</span>';
              }
              echo 
              "<div class='tCenter'><b><a href='".$file."' onclick='window.open( \"http://www.example.com/\" )'>Download Now</a></div>";
              echo 
              '<div class="tCenter">';
              echo 
              '</div>';
              }
              else

              I need some facebook likes, can you please help me
              http://facebook.com/softwarefreakin
              I noticed social media is really powerful
              Well DONE is better than well SAID

              Comment


                #8
                @Softfreak Thanku so Much :::::::::::::::
                HUNT

                Comment

                Working...
                X