Y T Nuke  
Results 1 to 5 of 5
Hi everybody, Can one mouseclick open a sponsor site in a new window AND change ...
  1. #1
    bookbuster is offline Newbies
    Join Date
    Mar 2009
    Posts
    35
    Reputation
    21
    Thanks
    88
    Thanked 6 Times in 6 Posts

    Default Open a link in a new window AND change the html on my own site?

    Hi everybody,

    Can one mouseclick open a sponsor site in a new window AND change the html on my own page??

    please help, thanks in advance.

  2. #2
    iulianh's Avatar
    iulianh is offline Motherf#@kin Martian
    Join Date
    Feb 2008
    Location
    Online
    Age
    23
    Posts
    181
    Reputation
    13
    Thanks
    547
    Thanked 283 Times in 59 Posts

    Default Re: Open a link in a new window AND change the html on my own site?

    I don't really understand what you want but to open a link in a new window just use
    Code:
     <a href="" target="_blank">link</a>
    "Bad artists copy. Great artists steal." -- Pablo Picasso

  3. The Following User Says Thank You to iulianh For This Useful Post:

    bookbuster (02-05-2012)

  4. #3
    bookbuster is offline Newbies
    Join Date
    Mar 2009
    Posts
    35
    Reputation
    21
    Thanks
    88
    Thanked 6 Times in 6 Posts

    Default Re: Open a link in a new window AND change the html on my own site?

    Quote Originally Posted by iulianh View Post
    I don't really understand what you want but to open a link in a new window just use
    Code:
     <a href="" target="_blank">link</a>
    Yes thank you, I got that part, but I was wondering if my own page could reload as well with new content (on the same click). but... i think i need javascript??

  5. #4
    n3xus is offline Junior Member
    Join Date
    Apr 2009
    Posts
    112
    Reputation
    17
    Thanks
    14
    Thanked 24 Times in 16 Posts

    Default Re: Open a link in a new window AND change the html on my own site?

    use javascript to edit the styles of the page..

    document.getElementById("whatever Id your editing").style.attribute = "change";

    create a javascript function that calls that, and the window.open() function with an onClick event.
    I like drugs

  6. The Following User Says Thank You to n3xus For This Useful Post:

    bookbuster (02-05-2012)

  7. #5
    imprint's Avatar
    imprint is offline Jr. VIP
    Join Date
    Nov 2009
    Posts
    130
    Reputation
    52
    Thanks
    52
    Thanked 206 Times in 54 Posts

    Default Re: Open a link in a new window AND change the html on my own site?

    Quote Originally Posted by n3xus View Post
    use javascript to edit the styles of the page..

    document.getElementById("whatever Id your editing").style.attribute = "change";

    create a javascript function that calls that, and the window.open() function with an onClick event.
    n3xus gave you the run down of it, you'll need two functions, one to handle the window.open part and the other to change your content. How much content do you need to change? If it's a lot, you may just want to redirect them to a new page and open the sponsor page at the same time, if it's something like you're just changing text from 'Click the sponsor linked' to 'Sponsor linked clicked', then just use another javascript function to trigger it.

    Example:
    Code:
    <html>
    	<head>
    		<script type="text/javascript">
    			function changeText(obj)
    			{
    				obj.innerHTML = "You've clicked the Sponsored Link";
    			}
    		</script>
    	</head>
    	<body>
    		<a href="#" onClick="changeText(this);window.open('http://google.com');">Click for Sponsored Link</a>
    	</body>
    </html>

  8. The Following User Says Thank You to imprint For This Useful Post:

    bookbuster (02-05-2012)

Natural Slow Link Building


SEO Blasts - High quality link building service

Tags for this Thread

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
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76