Ok, so I\'m trying to make a new log in form form my site using jquery and classic ASP. As of right now I have a containing div in my document thats set to hidden, then when the
Try use jQuerys post method:
$.post("dbProcessing.asp", $("#loginForm").serialize(), function(data) { // TODO: function logic });
Here you can find the manual for jQuery.post()
jQuery.post()