JavaScript select button and run it in new tab and wait 8 seconds and then do the same process again












-1















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.










share|improve this question

























  • 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
















-1















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.










share|improve this question

























  • 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














-1












-1








-1


1






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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












2 Answers
2






active

oldest

votes


















0














You can try this code



<script>
var button = document.getElementById('clk');
button.click(
setInterval(function () {
window.open('_blank')
}, 3000)
)
</script>





share|improve this answer
























  • 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



















0














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







share|improve this answer

























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


    }
    });














    draft saved

    draft discarded


















    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









    0














    You can try this code



    <script>
    var button = document.getElementById('clk');
    button.click(
    setInterval(function () {
    window.open('_blank')
    }, 3000)
    )
    </script>





    share|improve this answer
























    • 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
















    0














    You can try this code



    <script>
    var button = document.getElementById('clk');
    button.click(
    setInterval(function () {
    window.open('_blank')
    }, 3000)
    )
    </script>





    share|improve this answer
























    • 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














    0












    0








    0







    You can try this code



    <script>
    var button = document.getElementById('clk');
    button.click(
    setInterval(function () {
    window.open('_blank')
    }, 3000)
    )
    </script>





    share|improve this answer













    You can try this code



    <script>
    var button = document.getElementById('clk');
    button.click(
    setInterval(function () {
    window.open('_blank')
    }, 3000)
    )
    </script>






    share|improve this answer












    share|improve this answer



    share|improve this answer










    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



















    • 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













    0














    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







    share|improve this answer






























      0














      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







      share|improve this answer




























        0












        0








        0







        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







        share|improve this answer















        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








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Dec 29 '18 at 21:00









        Peter Mortensen

        13.7k1986113




        13.7k1986113










        answered Nov 25 '18 at 6:52









        FooFoo

        1




        1






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            To store a contact into the json file from server.js file using a class in NodeJS

            Redirect URL with Chrome Remote Debugging Android Devices

            Dieringhausen