Skip to content Skip to sidebar Skip to footer

Jquery Being Imported But Ajax Not Working?

I am making a chrome extension to auto login into the wifi, I use AJAX to do the post request but when I check the network of the pop it no POST request is sent instead, it just sh

Solution 1:

You are trying to attach the event before the document is ready. Enclose the code in your login.js between $(function() { and });


Post a Comment for "Jquery Being Imported But Ajax Not Working?"