Created
January 23, 2014 16:22
-
-
Save ryansukale/8581584 to your computer and use it in GitHub Desktop.
Short snippets of code to do commonplace things using jQuery or pure javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( | |
//Setting the value of a radio button programmatically | |
$('input[type=radio]').prop('checked', true); | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment