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

  • SEARCH
  • Home
  • 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 7410659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:16:04+00:00 2026-05-29T06:16:04+00:00

So I’m fairly new to jQueryMobile but I’ve managed to create a search bar

  • 0

So I’m fairly new to jQueryMobile but I’ve managed to create a search bar that displays results as you’re typing using Ajax that’s working just fine but the problem is that CSS Styles aren’t being applied to the ajax’d content.

Is there a way I can force the CSS to either refresh or recache or just have the CSS apply to the newly ajax’d html?

  • 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-29T06:16:05+00:00Added an answer on May 29, 2026 at 6:16 am

    Enhancing new markup
    The page plugin dispatches a pagecreate event, which most widgets use to auto-initialize themselves. As long
    as a widget plugin script is referenced, it will automatically enhance
    any instances of the widgets it finds on the page.

    However, if you generate new markup client-side or load in content via
    Ajax and inject it into a page, you can trigger the create event to
    handle the auto-initialization for all the plugins contained within
    the new markup. This can be triggered on any element (even the page
    div itself), saving you the task of manually initializing each plugin
    (listview button, select, etc.).

    For example, if a block of HTML markup (say a login form) was loaded
    in through Ajax, trigger the create event to automatically transform
    all the widgets it contains (inputs and buttons in this case) into the
    enhanced versions. The code for this scenario would be:

    $( ...new markup that contains widgets... ).appendTo( ".ui-page" ).trigger( "create" );
    

    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.

    jQM Docs here:

    • 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:

    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");
    

    jQM Docs here:

    • http://jquerymobile.com/demos/1.0.1/docs/forms/docs-forms.html
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the

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.