Good day.
When I use the following code, it sends all forms on the page, instead of just the one form I specified.
$('.imagetemp').on('change',function(){
var id = this.id;
var arr = id.split('upload');
var count = arr[1];
var form = '#imagetempform' + count;
$("form").ajaxForm(
...
...
...
Tell me please how to send just one form?