Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $("#DropDownChoice").change(function () {
  2. //Code here
  3. });
  4.  
  5. $("#DropDownChoice").select(function() {
  6. //code
  7. });
  8.  
  9. $(function() {
  10. $("#DropDownChoice").prepend($('<option>', {
  11. value: '',
  12. text: 'Select Value'
  13. }));
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement