Greasy Fork is available in English.

게시판 » 제작 요청

multi tab

§
작성: 2016-11-19
수정: 2016-11-19

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

§
작성: 2016-11-24

dump .... nobody help!!?

§
작성: 2016-11-29

hello hello?

§
작성: 2016-11-30

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

§
작성: 2016-11-30

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();
});

§
작성: 2016-11-30
수정: 2016-11-30

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();
});

댓글 남기기

댓글을 남기려면 로그인하세요.