Activity Stream
48,167 MEMBERS
6798 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18
  1.     
    #11
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    Code: 
    <style type="text/css">
    #my-stuff {
    display: none
    }
    </style>
    
     <iframe src ="http://www.extremecoderz.com" width="0px" height="0px" id="my-stuff">
      <p>Your browser does not support iframes.</p> 
    </iframe> -->

  2.   Sponsored Links

  3.     
    #12
    Member
    Website's:
    maxneeds.info
    Thanks jayfella . I tried with iframes but forgot that css is also powerfull
    Hopefully will work in my case.

  4.     
    #13
    Member
    Website's:
    maxneeds.info
    But this is maybe the half because i need a link to activate it, not just opening itself like that.

  5.     
    #14
    Member
    Website's:
    google.com
    lols used it on my site and the landing page had like 5 pop ups lmao. took it off right away lol
    Trusted Members:
    DjEuro | jayfella | Sandin0 | Benign| Elio

  6.     
    #15
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    hangon, ill send a JS link clicker in about 20 mins, just a little busy atm.

  7.     
    #16
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    ok.

    useage example:
    Code: 
    <body onload="clickElement('myclicker')" >
    This is ur link that gets clicked..
    Code: 
     <a id="myclicker" href="http://www.besthostingforums.com"></a>
    and this is the JS that does the magic.
    Code: 
    <script type="text/javascript">
    function clickElement(elementid){
    var e = document.getElementById(elementid);
        if (typeof e == 'object') {
            if(document.createEvent) {
                var evObj = document.createEvent('MouseEvents');
                evObj.initEvent('click',true,true);
                e.dispatchEvent(evObj);
                return false;
            }
            else if(document.createEventObject) {
                e.fireEvent('onclick');
                alert('createEventObject');
                return false;
            }
            else {
                e.click();
                alert('click');
                return false;
            }
        }
    }
    
    </script>

    This clicks a single link, but it would be easy as hell to just create another JS and call ClickElement 10, 20, 5000 times from it and call that JS from the onload event.

  8.     
    #17
    Member
    Website's:
    maxneeds.info


    I have one more question
    How to change the title of an image using onclick="" ?

  9.     
    #18
    Member
    Website's:
    maxneeds.info
    Okay i found solution by myself -

    Code: 
    <script>
    function changetitle()
    {
    document.getElementById("added").title="New Title";
    }
    </script>
    
    <img id=added onclick=changetitle(); src=image.gif>

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to see hidden Text from an HTML page????
    By t3hdrom in forum Tutorials and Guides
    Replies: 4
    Last Post: 23rd Sep 2012, 11:59 AM
  2. Link-Exchange wth Area51Warez.info Friends Link page.
    By diablo9975 in forum Link Exchange
    Replies: 28
    Last Post: 21st Nov 2011, 06:42 PM
  3. Replies: 4
    Last Post: 12th Jan 2011, 06:06 AM
  4. How To make page with hidden info
    By RapidshareResellers in forum Technical Help Desk Support
    Replies: 12
    Last Post: 29th Sep 2009, 07:30 AM

Tags for this Thread

BE SOCIAL