Hi all,
I have yet another JS issue ...grrr. Bear with me, I am a hopeless JS newbie.
I am receiving "missing ) after argument list" error in firebug with the code below:
<script type=\"text/javascript\">
function add( answer )
{
$.post('../page.php?cmd=view&id=3523', {user_id: 3523, other_user_id: 2343}, function(d)
$(answer).after(\"<span>Done!</span>\").remove();
});
}
}
</script>
Any help is always appreciated!