JavaScript select button and run it in new tab and wait 8 seconds and then do the same process again
I want to do "JavaScript
select button and run it in a new tab and wait 8 seconds and then do the same process again".
I'm a beginner user of JavaScript.
I have used I code, but it is still not working. I think it is wrong coded. See this. This is the first part of code.
setInterval(function () {
document.getElementById("clk").click()window.open'_blank';
}, 8000);
This is the second part of the code:
var button = document.getElementById('clk');
setInterval(function(){
button.click(window.open('_blank'))
},8000)
I repeat that what I want:
Select "clk" id and open it in a new tab as well and wait 8 seconds and do the same process again.
I also want to clear to you that I don't know how to code. I'm in a learning period.
javascript html
add a comment |
I want to do "JavaScript
select button and run it in a new tab and wait 8 seconds and then do the same process again".
I'm a beginner user of JavaScript.
I have used I code, but it is still not working. I think it is wrong coded. See this. This is the first part of code.
setInterval(function () {
document.getElementById("clk").click()window.open'_blank';
}, 8000);
This is the second part of the code:
var button = document.getElementById('clk');
setInterval(function(){
button.click(window.open('_blank'))
},8000)
I repeat that what I want:
Select "clk" id and open it in a new tab as well and wait 8 seconds and do the same process again.
I also want to clear to you that I don't know how to code. I'm in a learning period.
javascript html
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon;
to indicate each instruction. Also,window.open'_blank'
is a function, you forgot to include parenthesis
– Ahmad
Nov 25 '18 at 6:45
add a comment |
I want to do "JavaScript
select button and run it in a new tab and wait 8 seconds and then do the same process again".
I'm a beginner user of JavaScript.
I have used I code, but it is still not working. I think it is wrong coded. See this. This is the first part of code.
setInterval(function () {
document.getElementById("clk").click()window.open'_blank';
}, 8000);
This is the second part of the code:
var button = document.getElementById('clk');
setInterval(function(){
button.click(window.open('_blank'))
},8000)
I repeat that what I want:
Select "clk" id and open it in a new tab as well and wait 8 seconds and do the same process again.
I also want to clear to you that I don't know how to code. I'm in a learning period.
javascript html
I want to do "JavaScript
select button and run it in a new tab and wait 8 seconds and then do the same process again".
I'm a beginner user of JavaScript.
I have used I code, but it is still not working. I think it is wrong coded. See this. This is the first part of code.
setInterval(function () {
document.getElementById("clk").click()window.open'_blank';
}, 8000);
This is the second part of the code:
var button = document.getElementById('clk');
setInterval(function(){
button.click(window.open('_blank'))
},8000)
I repeat that what I want:
Select "clk" id and open it in a new tab as well and wait 8 seconds and do the same process again.
I also want to clear to you that I don't know how to code. I'm in a learning period.
javascript html
javascript html
edited Dec 29 '18 at 20:59
Peter Mortensen
13.7k1986113
13.7k1986113
asked Nov 25 '18 at 6:19
Muhammad AbidMuhammad Abid
61
61
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon;
to indicate each instruction. Also,window.open'_blank'
is a function, you forgot to include parenthesis
– Ahmad
Nov 25 '18 at 6:45
add a comment |
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon;
to indicate each instruction. Also,window.open'_blank'
is a function, you forgot to include parenthesis
– Ahmad
Nov 25 '18 at 6:45
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon
;
to indicate each instruction. Also, window.open'_blank'
is a function, you forgot to include parenthesis– Ahmad
Nov 25 '18 at 6:45
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon
;
to indicate each instruction. Also, window.open'_blank'
is a function, you forgot to include parenthesis– Ahmad
Nov 25 '18 at 6:45
add a comment |
2 Answers
2
active
oldest
votes
You can try this code
<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
add a comment |
You can set a new name for a window tab before opening.
In this example, the name is generated random from 1 to 10:
var button = document.getElementById('clk');
button.addEventListener('click', function () {
setInterval(function () {
var name = Math.floor((Math.random() * 10) + 1);
window.open('_blank', name);
},8000)
});
We use addEventListener
function to catch click
event on the button.
Source:
EventTarget.addEventListener()
JavaScript random() Method
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53465156%2fjavascript-select-button-and-run-it-in-new-tab-and-wait-8-seconds-and-then-do-th%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can try this code
<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
add a comment |
You can try this code
<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
add a comment |
You can try this code
<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>
You can try this code
<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>
answered Nov 25 '18 at 6:28
BuddyBuddy
767
767
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
add a comment |
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
Thanks Buddy But Please how i can do a onclick open link in new tab but focus on present window
– Muhammad Abid
Nov 25 '18 at 14:19
add a comment |
You can set a new name for a window tab before opening.
In this example, the name is generated random from 1 to 10:
var button = document.getElementById('clk');
button.addEventListener('click', function () {
setInterval(function () {
var name = Math.floor((Math.random() * 10) + 1);
window.open('_blank', name);
},8000)
});
We use addEventListener
function to catch click
event on the button.
Source:
EventTarget.addEventListener()
JavaScript random() Method
add a comment |
You can set a new name for a window tab before opening.
In this example, the name is generated random from 1 to 10:
var button = document.getElementById('clk');
button.addEventListener('click', function () {
setInterval(function () {
var name = Math.floor((Math.random() * 10) + 1);
window.open('_blank', name);
},8000)
});
We use addEventListener
function to catch click
event on the button.
Source:
EventTarget.addEventListener()
JavaScript random() Method
add a comment |
You can set a new name for a window tab before opening.
In this example, the name is generated random from 1 to 10:
var button = document.getElementById('clk');
button.addEventListener('click', function () {
setInterval(function () {
var name = Math.floor((Math.random() * 10) + 1);
window.open('_blank', name);
},8000)
});
We use addEventListener
function to catch click
event on the button.
Source:
EventTarget.addEventListener()
JavaScript random() Method
You can set a new name for a window tab before opening.
In this example, the name is generated random from 1 to 10:
var button = document.getElementById('clk');
button.addEventListener('click', function () {
setInterval(function () {
var name = Math.floor((Math.random() * 10) + 1);
window.open('_blank', name);
},8000)
});
We use addEventListener
function to catch click
event on the button.
Source:
EventTarget.addEventListener()
JavaScript random() Method
edited Dec 29 '18 at 21:00
Peter Mortensen
13.7k1986113
13.7k1986113
answered Nov 25 '18 at 6:52
FooFoo
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53465156%2fjavascript-select-button-and-run-it-in-new-tab-and-wait-8-seconds-and-then-do-th%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Welcome to Stackoverflow Muhammad. You might want to split your javascript code into a separate line per instruction, and use semi-colon
;
to indicate each instruction. Also,window.open'_blank'
is a function, you forgot to include parenthesis– Ahmad
Nov 25 '18 at 6:45