Get all Select Elements in a Form by referencing $(this) instead of $("form select")
- by DaveDev
Hi Guys
I'm currently getting all the Select elements that exist in a form with the following:
$("form").submit(function(event)
{
// gather data
var data = GetSelectData($("form select"));
// do submit
$.post($(this).attr("action"), data, ..etc)
});
Instead of passing in $("form select"), is there a way I can say something like…