Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(function(){
  3. $("#btn").click(function (){
  4. alert($(‘input:radio[name=opt]:checked’).val());
  5. });
  6. });
  7. </script>
  8. <input type="rádio" name="opt" value="1234567890">
  9. <input type="button" id="btn" value="click">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement