I have the following Jquery ajax call but would like to put as the Url a variable instead of a string.
Is that possible? For instance instead of make10.xml can I have a variable which equals to "make10.xml" or some other string?
$.ajax({
type: "GET",
url: "make10.xml",
dataType: "xml",
success: function(xml) {
var select = $('#mySelect');