I have a classifieds website, and on the page where ads are showed, I am creating a \"Send a tip to a friend\" form...
So anybody who wants can send a tip of the ad
Here is some jQuery for posting to a php page and getting html back:
$('form').submit(function() { $.post('tip.php', function(html) { // do what you need in your success callback } return false; });