Getting the value of a selected radio button out of a radio group in jQuery
Just a quick tip, I needed to get the value of the selected radio button from a radio group using jQuery. While several custom selectors are available for forms, there isn’t a simple way to do it that I could find. I ended up using a solution that I quite like, and wanted to share.
$("input[name=radio_group]:checked").val();
Have I mentioned that I love jQuery?
Edit: This entry was directly attacked by the robots, and all comments were lost. Please leave one again if you left it earlier, and accept my sincerest of apologies.

