Your Link Multiple time open in every Browser

Your Link Multiple time open in every Browser
<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
</head>

<body>
    <a href="#" class="yourlink" target="_blank" id="startrunning">Click here</a>
</body>
<script type="text/javascript">
    $('a.yourlink').click(function(e) {
        e.preventDefault();
        var i = 0;
        while (i < 23) {
            window.open('http://w3free.blogspot.in/2016/06/smtp-send-mail-in-php.html');

            i++;
        }
    });
</script>
</html>


EmoticonEmoticon