Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7405187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:21:53+00:00 2026-05-29T05:21:53+00:00

Using jquery mobile, I am trying to reset a form I am using the

  • 0

Using jquery mobile, I am trying to reset a form

I am using the following:

$('form').prop('selectedIndex',0);

The value the select submits does reset to zero, but the image stays as it is.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:21:53+00:00Added an answer on May 29, 2026 at 5:21 am

    Create vs. refresh: An important distinction
    Note that there is an important difference between the create event and refresh method that
    some widgets have. The create event is suited for enhancing raw markup
    that contains one or more widgets. The refresh method should be used
    on existing (already enhanced) widgets that have been manipulated
    programmatically and need the UI be updated to match.

    For example, if you had a page where you dynamically appended a new
    unordered list with data-role=listview attribute after page
    creation, triggering create on a parent element of that list would
    transform it into a listview styled widget. If more list items were
    then programmatically added, calling the listview’s refresh method
    would update just those new list items to the enhanced state and leave
    the existing list items untouched.

    • http://jquerymobile.com/demos/1.0.1/docs/pages/page-scripting.html

    Refreshing form elements
    In jQuery Mobile, some enhanced form controls are simply styled (inputs), but others are custom controls
    (selects, sliders) built from, and kept in sync with, the native
    control. To programmatically update a form control with JavaScript,
    first manipulate the native control, then use the refresh method to
    tell the enhanced control to update itself to match the new state.
    Here are some examples of how to update common form controls, then
    call the refresh method:

    • http://jquerymobile.com/demos/1.0.1/docs/forms/docs-forms.html

    Checkboxes:

    $("input[type='checkbox']").prop("checked",true).checkboxradio("refresh");
    

    Radios:

    $("input[type='radio']").prop("checked",true).checkboxradio("refresh");
    

    Selects:

    var myselect = $("#selectfoo");
    myselect[0].selectedIndex = 3;
    myselect.selectmenu("refresh");
    

    Sliders:

    $("input[type='range']").val(60).slider("refresh");
    

    Flip switches (they use slider):

    var myswitch = $("#selectbar");
    myswitch[0].selectedIndex = 1;
    myswitch.slider("refresh");
    

    try:

    $('form').prop('selectedIndex',0);
    $('form').trigger('create');
    

    Or if this is a drop down select

    • http://jquerymobile.com/demos/1.0.1/docs/forms/selects/methods.html

    JS

    $('form').prop('selectedIndex',0);
    //refresh value         
    
    $('select').selectmenu('refresh');
    
    //refresh and force rebuild 
    $('select').selectmenu('refresh', true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a mobile version of my views using jQuery Mobile, but
I'm using Jquery Mobile and am trying to drop a form inside a JQM
I have crated a form and trying to insert data using jquery ajax. But
I'm trying to make a mobile application using jQuery Mobile and Phonegap. But first
I'm trying to traverse through an XML file using jquery mobile. My code goes
I'm trying to treverse through an XML file using jquery mobile. My code goes
I'm trying to add some validation to some form fields in a jQuery Mobile
I'm using PhoneGap and JQuery Mobile. I'm trying to use custom button icons. I
Currently Im trying to do ajax request using jQuery Mobile. I`m trying to use
I am trying to create a html page with persistent footers using jquery mobile.This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.