 |
Created 11/6/07
|
What is the most appropriate response to these acts of violence in our community?
|
';
$.ajax({
url: '/' + theAnswerList + '&gid=' + Math.random(), //
type: 'GET',
dataType: 'html',
timeout: 1000,
error: function(){
alert('Error happened while voting!');
},
success: function(html){
$('#Results_0').empty();
$('#Results_0').append(ResultsCode);
$('#TR_0').empty();
$('#TR_0').append(OurTotalResponses);
var htmlToArray = html.split(',');
var ourPercent; var OurAnswerID; var AnswerPercent;
$.each( htmlToArray, function(i, n){
AnswerPercent = n.split(':');
$('#AID_0_' + AnswerPercent[0]).empty();
$('#AID_0_' + AnswerPercent[0]).append(AnswerPercent[1]).css("font-weight","bold");
$('#Img_0_' + AnswerPercent[0]).empty();
$('#Img_0_' + AnswerPercent[0]).append('').SlideInLeft(1000); //
});
}
});
}
|
|
There are no comments yet. Click above to write the first comment.
|
|