<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<button id="pay">Paypal</button><button id="fren">Frenchise</button>
<form method="POST" action="done" id="pay" style="display: none;" >
Enter Paypal ID<input name="pay" type="text" />
</form>
<form method="POST" action="done" id="fren" style="display: none;">
Frenchise Name<input name="fren" type="text" />
</form>
<script>
$("#pay").click(function () {
$("#pay").show("slow");
});
$("#fren").click(function () {
$("#fren").show("slow");
});
</script>
</body>
</html>
this one is not working even this is the same method which i read on jquery sute what's mistake in this