Coder Please Help!!!

janny2030

Regular Member
Joined
Apr 17, 2011
Messages
334
Reaction score
137
BHW friends,

I am trying to triple my site's visitor with this coding. I need your help in coding this small kind of (code/script) which can open up 2 more browsers when he/she click on the play (video) screen.

When visitors visit your site to watch a video, they will click on the play button or the (youtube) video screen in order to watch it. My desire is to get the visitor open 2 more browsers when they click play; one in another tab (on same browser) and another one is a popup browser which will be running at background. So that the PC of each visitor is viewing up to 3 browsers at a time (duration). But I need to keep the video browser (first visited video page) stayed so visitors are not annoyed by another 2 browsers.

You help would be much appreciated!
Thanks in adv!
 
That is a sneaky method of increasing your site's visitors and it's mostly used by unscrupulous webmasters promoting some dubious offers. Even if they are honest and legitimate, it still causes annoyance for web users.
 
Thanks bluestar003, I mean 2 more taps! but 1 in the same browser and another one in a new browser! Can you help!
 
That is a sneaky method of increasing your site's visitors and it's mostly used by unscrupulous webmasters promoting some dubious offers. Even if they are honest and legitimate, it still causes annoyance for web users.

Well, it in fact causes annoyance, but most users only visit the site for once or twice and then gone... That's why I need that kinda code!!! Anyone could help?
 
you can open multiple tabs with this JS code:

<html>
<script>
function openLinks(){
links = document.getElementsByTagName('a');
for (i = 0; i < links.length;i++){
window.open(links.getAttribute('href'),'_blank');
window.focus();
}
}
</script>
<body onload="openLinks()">
<a href="hxxp://google_com">google</a>
<a href="hxxp://blackhatworld_com">blackhatworld</a>
<a href="hxxp://anotherurl_com">anotherurl</a>
</body>
</html>


but most internet browsers will block pop-up activity, works on IE though.
 
I'd like to give a suggestion, Avoid this..
Because being a web-consultant I know - people hate pop-ups sort of thing & if people started getting irritated by this they will leave bad ratings about your service on various website rating services like WOT.
And that dents the possibility to higher ranking to your site..
Best of luck ....
 
Cover your player with a div that will hide onClick and also onClick it opens the urls you want in some other tabs. That won't be blocked because it's seen as if the user requested that!
 
you can open multiple tabs with this JS code:



but most internet browsers will block pop-up activity, works on IE though.

Thanks for your code, actually if it does block pop-up and works on IE only, I can't use this... Just want the code that's clean and easy! Anyway, thanks for your help!

I'd like to give a suggestion, Avoid this..
Because being a web-consultant I know - people hate pop-ups sort of thing & if people started getting irritated by this they will leave bad ratings about your service on various website rating services like WOT.
And that dents the possibility to higher ranking to your site..
Best of luck ....
Thanks for your comment, actually you are right on this thought, anyway I only need this for new site and not for ranking, just a huge traffic sites. So I don't care about reputation! But thanks for your advice, it reminds me a lot!

is this about blogging or?
Well, this is about triple the traffic as well as coding your blog! Anything wrong?
 
Cover your player with a div that will hide onClick and also onClick it opens the urls you want in some other tabs. That won't be blocked because it's seen as if the user requested that!

Sir, I don't get what you say here, could you please add more details? And what is the code? Thanks
 
Back
Top