jquery - Set traditional property in AJAX shorthand methods -


is possible set tradition property ajax shorthand commands such $.post() & $.get()?

i know possible set following

$.ajax({     url: url,     type: "get",     traditional: true,     } }); 

however, shorthand version.

the way seems be

 $.ajaxsetup({     traditional:true    }); 

but applied (future) ajax queries.

$.post or $.get "shorthand ajax functions", without "options" parameter.


Comments

Popular posts from this blog

php - regexp cyrillic filename not matches -

c# - OpenXML hanging while writing elements -

sql - Select Query has unexpected multiple records (MS Access) -