get the zeroth form in the returned array
darcs-hash:20080918145545-5ed1f-11100b4bd89ef289f31bbfd37a58c4395469f808.gz
This commit is contained in:
		| @@ -57,14 +57,14 @@ $(document).ready(function(){ | ||||
|  | ||||
|      var favoptions = {dataType: 'xml', | ||||
|                success: function(xml) { | ||||
|                     var new_form = $('form.disfavor', xml); | ||||
|                     var new_form = $('form.disfavor', xml).get(0); | ||||
|                     var id = new_form.id.replace('disfavor', 'favor'); | ||||
|                     $('form#'+id).replace(new_form); | ||||
|                }}; | ||||
|       | ||||
|      var disoptions = {dataType: 'xml', | ||||
|                success: function(xml) { | ||||
|                     var new_form = $('form.favor', xml); | ||||
|                     var new_form = $('form.favor', xml).get(0); | ||||
|                     var id = new_form.id.replace('favor', 'disfavor'); | ||||
|                     $('form#'+id).replace(new_form); | ||||
|                }}; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user