Are there a way to call a ajaxform from malsup with a function?
like this:
function callAjaxForm(id){
$('#' + id).ajaxForm({
....
});
}
When I do such thing nothing happen...
edited: I already try with a function like this:
function callAjaxForm(id){
(function() {
$('#' + id).ajaxForm({
....
});
})();
}
thanks