Just as an update, I ended-up using $.ajax()
// Append hidden field with unique token to form:
$.ajax({url: token, global: false, cache: false, success:
function(txt) {
$emailStory.append('<input type="hidden" name="ts" value="' + txt +
'">');
}});Works perfectly. Thanks to all who helped!!!

