Archive for March, 2010
JQuery Toggle Hide and Show Link
Even if you’re new to JQuery it’s always mind-boggling how easy it is to do pretty cool UX stuff with it.
Here’s you you make a link that shows and hides content on you page:
$(”#toggle_link”).toggle(
function() {
[...]

