http://docs.jquery.com/UI/Magnifier

http://docs.jquery.com/UI/Magnifier


Not working
http://docs.jquery.com/UI/Magnifier
Bad example
http://docs.jquery.com/Post
God Example
jQuery loading another page and alerting the result:
$.post("receive_variables.php",
{first_name:"Tarcila",last_name:"Broder"},
function(returned_data)
{
alert(data);
});
receive_variables.php
<?php
echo 'Welcome '.$_POST['first_name'].' '.$_POST['last_name'];
?>
OUTPUT:
Browser will alert, with it's standard pop-up box 'Welcome Tarcila
Broder'