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

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -