Guest User

Untitled

a guest
Jul 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var myselect = $("select#foo");
  2. myselect[0].selectedIndex = 3;
  3. myselect.selectmenu("refresh");
  4.  
  5. $('#PAGE').live('pagecreate',function(event){
  6. var myselect = $("select#foo");
  7. myselect[0].selectedIndex = 3;
  8. myselect.selectmenu("refresh");
  9. });
  10.  
  11. $.fn.jqmSelectedIndex = function(index){
  12. var self = $(this)
  13. self
  14. .prop('selectedIndex', index)
  15. .selectmenu("refresh");
  16.  
  17. return self;
  18. }
  19.  
  20. $("select#foo").jqmSelectedIndex(3);
Add Comment
Please, Sign In to add comment