I am not the most experienced jquery author and I came up with a solution to a simple problem, but to me it doesn't seem like the best way to do it. I think the code explains it best:
$("#play_button").click( function () {
$("#play_button").hide();
$("#pause_button").show();
});
$("#pause_button").click( function () {
$("#play_button").show();
$("#pause_button").hide();
});
Any suggestions on a better block of code to accomplish the same thing?