Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <label for="note2" title="Passable">
  2. <a role="button" class="btn btn-note btn-xs" onclick="setVisibility('Note-question-sub', 'block');">
  3. <i class="fa fa-plus rouge" aria-hidden="true"></i>
  4. <span class="sr-only">Passable</span>
  5. </a>
  6. <input type="radio" value="2" name="note" id="note2" />
  7. </label>
  8.  
  9. function setVisibility(id, visibility) {
  10. document.getElementById(id).style.display = visibility;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement