§
Publicado: 19/11/2016
Editado: 19/11/2016

multi tab

this is html code
http://pastebin.com/QHp1UAy2

i want script when click Submit (button it will open 2 or 3 tab submit

§
Publicado: 24/11/2016

dump .... nobody help!!?

§
Publicado: 29/11/2016

hello hello?

§
Publicado: 30/11/2016

You have to provide the URL you want the script to work on.

§
Publicado: 30/11/2016

You would probably want something like this:

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

§
Publicado: 30/11/2016
Editado: 30/11/2016

Here Is html code
http://pastebin.com/QHp1UAy2

its not working

// ==UserScript==
// @name MULTI TAB
// @namespace Cradit By Tom Burris2
// @description Multi Tab Open
// @include *
// @version 1
// @grant none
// ==/UserScript==

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

Publicar respuesta

Inicia sesión para responder.