Send multi message using jquery plugin in multi-row data?

Posted by Agus Puryanto on Stack Overflow See other posts from Stack Overflow or by Agus Puryanto
Published on 2009-10-16T07:51:18Z Indexed on 2010/04/19 16:03 UTC
Read the original article Hit count: 183

Filed under:
|
|

i use jquery.form to send a form, but in may case below how use this jquery plugin

$('#htmlForm').ajaxForm({ 
	target: '#htmlExampleTarget', 
	success: function() { 
		$('#htmlExampleTarget').fadeIn('slow');
		$('#htmlForm').hide();
	} 
});

for($i=1;$i<= 10;$i++){

//form $1

form name="form$i" action="blabla.php"

input type="text" name="name$i" />

input type="text" name="name$i" />

input type="submit" name="submit" /

}

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about php