Name: w/e 2010-11-11 18:01
$("a").click(function () {
event.preventDefault();
$("#main").slideUp("fast", function () {
if ($(this).hasClass('Games')) {
replace("../Home/Games");
}.....
How to select the ("a") in the callback function of ("#main").slideUp?
event.preventDefault();
$("#main").slideUp("fast", function () {
if ($(this).hasClass('Games')) {
replace("../Home/Games");
}.....
How to select the ("a") in the callback function of ("#main").slideUp?