[jQuery] Adding properties to $.ajax(options)

[jQuery] Adding properties to $.ajax(options)


$.ajax({
type: "GET",
url: prefix+url,
success: script_saved,
custom_property : someVar
});
Is there anything wrong with this?