Created
July 29, 2008 17:25
-
-
Save collin/3128 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
form.ajaxForm().ajaxSubmit({ | |
// target: "#divToUpdate", | |
url: that._options.uploadUrl, | |
// dataType: "json", | |
method: "POST", | |
iframe: true, | |
success: function(response) { | |
that.insertImage(response, | |
form.find(that._options.titleSelector).val(), | |
form.find(that._options.altSelector).val()); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment