jQuery AJAX Loading Page Content Only After I Press Shift Key
- by Cosmin
My ajax + jquery loading page only after holding shift key and duplicate new empty window.
If I press the loading button nothing hapen, only after I press shift key I get to load the page correctly...
this is my ajax script:
$(document).ready(function () {
    $(".getUsersA").click(function () {
        $.ajax({
            beforeSend: function () {
                $(".gridD").html(spinner)
            },
            url: 'lib/some_url.php',
            type: 'POST',
            data: ({
                data1:'2013-09-01'
                }),
            success: function  (results) 
                {$(".gridD").html(results);}
        });
    });
});
I have a second js file with just this line of code for spinner
var spinner = "<img src='images/spinner.gif' border='0'>";
html code:
<html>
<head>
    <title>Title</title>
    <script type="text/javascript" src="js/jquery-1.10.2.js"></script>
    <script type="text/javascript" src="js/ajax.js"></script>
    <script type="text/javascript" src="js/general.js"></script>
</head>
<body>
    <h1>Putting it all tugether ... with jQuery</h1>
    <div class="thedivD"><a href="" class="buttonA getUsersA">Get Users</a></div>
    <h3>jQuery results</h3>
    <div class="gridD"></div>
</body>
</html>