javascript Programming Glossary: vote_type
How can you make a vote-up-down button like in Stackoverflow? http://stackoverflow.com/questions/719194/how-can-you-make-a-vote-up-down-button-like-in-stackoverflow id this .parents 'div.answer' .attr 'id' .split '_' 1 var vote_type this .hasClass 'up' 'up' 'down' if this .hasClass 'selected'.. if this .hasClass 'selected' .post ' vote ' id id type vote_type function json if json.success 'success' '#answer_' id .find.. if json.success 'success' '#answer_' id .find 'img.' vote_type .attr 'src' 'vote_' vote_type '_selected.png' .addClass 'selected'..
|