$(function(){ var s = $("span"); s.click(function() { s.not(this).removeClass("orange"); $(this).toggleClass("orange"); }); });