The jQuery function below returns this string:
'#prayer_date'.html("03/19/1968");
But it doesn't get executed because the function below doesn't act on the data
variable.
What would you need to do to have the result above executed as-is in the function below?
$('.showprayer').click( function(event)
{
$.post('/show_prayer', { 'name' : $(this).text() }, function(data)
{
// how to execute the `data` server response as-is?
});
});