[jQuery] How to use the GET method to display data without refreshing the page
Hi jQuery Geeks,
Recently i saw a nice example in Prototype to use the get & display
data without refreshing the page . how to do that in jQuery, i'm
almost tired of doing it, see the below php code this how my php code
goes, so i guess one of you guys can help me.
<a href="catalog.php?show=productid">Show product as per the id hi</a>
<?php
switch($_GET['show']){
case 'productid':
echo 'show the product as per the product id';
break;
default:
echo 'Show list of product';
break;
}
?>