Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. site1 <- selectInput(
  2. inputId = "site1",
  3. label = "Select a first site:",
  4. choices = siteChoices
  5. )
  6.  
  7. <select id="site1" name="sites[site1]"><option value="9" selected>Liberty E - 9</option>
  8. <option value="13">Liberty S - 13</option>
  9. <option value="18">New Milford E - 18</option>
  10. <option value="21">Dimock S - 21</option>
  11. </select>
  12.  
  13. alert($("#site1").html());
  14.  
  15. <option value="9" selected="selected"></option>
  16.  
  17. <option value="9" selected="selected">Liberty E - 9</option>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement