jquery select all elements code example
Example 1: select a form by name jquery
var frm = $('form[name="frmSave"]');
Example 2: jquery get all select options
//looping through options select with jQuery
$("#mySelectID option").each(function(){
var thisOptionValue=$(this).val();
});
Example 3: jquery select
$('#selector').selectmenu();