Guest User

Untitled

a guest
Feb 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1.  
  2. <div class="ui-select ui-icon-bt-right">
  3. <span class="ui-select-bt">
  4. <span>State</span>
  5. <span class="ui-icon ui-icon-arrow-d"></span>
  6. </span>
  7.  
  8. <select id="select-choice-1" name="select-choice-1" class='styledselect'>
  9. <option value="standard">Standard: 7 day</option>
  10. <option value="rush">Rush: 3 days</option>
  11. <option value="express">Express: next day</option>
  12. <option value="overnight">Overnight</option>
  13. </select>
  14. </div>
  15.  
  16. <script>
  17.  
  18. $(function() {
  19. $('.styledselect').change(function(){
  20. $(this).prev().find('span:first').html( $(this).find(':selected').text() );
  21. });
  22. });
  23.  
  24. </script>
Add Comment
Please, Sign In to add comment