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 8573969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T19:22:14+00:00 2026-06-11T19:22:14+00:00

Im using the jQuery Mobile Filter List: http://jquerymobile.com/test/docs/lists/lists-search-with-dividers.html Is it possible to move the

  • 0

Im using the jQuery Mobile Filter List:
http://jquerymobile.com/test/docs/lists/lists-search-with-dividers.html

Is it possible to move the position of the input field so I can put it into a div already on my page?

Using jQuery’s appendTo seems to work fine but its kind of a hacky solution. Thanks

  • 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-06-11T19:22:15+00:00Added an answer on June 11, 2026 at 7:22 pm

    this is what I found while searching for solution to a similar problem.

    HTML code example:

    <div data-role="page" id="page-id">
        <div data-role="content">
            <div data-role="fieldcontain">
              <input type="search" name="password" id="search" value="" />
            </div>
            <div class="filter-div" data-filter="one">1</div>
            <div class="filter-div" data-filter="two">2</div>
            <div class="filter-div" data-filter="three">3</div>
            <div class="filter-div" data-filter="four">4</div>
            <div class="filter-div" data-filter="five">5</div>
        </div>
    </div>
    

    JS code example:

    $(document).delegate('#page-id', 'pageinit', function () {
        var $filterDivs = $('.filter-div');
        $('#search').bind('keyup change', function () {
            if (this.value == '') {
                $filterDivs.slideDown(500);
            } else {
                var regxp = new RegExp(this.value),
                    $show = $filterDivs.filter(function () {
                        return ($(this).attr('data-filter').search(regxp) > -1);
                    });
                $filterDivs.not($show).slideUp(500);
                $show.slideDown(500);
            }
        });
    });
    

    This way you can place your input text box anywhere on your page and it should properly filter a list of items you want.

    JSFiddle DEMO: http://jsfiddle.net/cZW5r/30/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im using the jQuery Mobile search filter with dividers: http://jquerymobile.com/test/docs/lists/lists-search-with-dividers.html I need the dividers
Im using the jQuery mobile search filter list: http://jquerymobile.com/test/docs/lists/lists-performance.html Im having somer performance issues,
Im using the jQuery Mobile Filtered List: http://jquerymobile.com/demos/1.0.1/docs/lists/lists-search.html On my PC it works fine
I am using jQuery mobile to create the following page. http://ielts.progmic.com/iOS/college.php?title=Royal+College+Of+Arts In the link
I'm using JQuery Mobile 1.1.0 and I'm having trouble keeping the underlying list selections
For my mobile app I am using jquery mobile with multipage layout (one html,
I am using jquery Mobile 1.0. I have this html code. <label for=slider class=ui-hidden-accessible>
I'm using jquerymobile. And on a list I have a filter. When a user
I'm using Jquery mobile framework. I have 2 html files which has two buttons
I am trying to create a list using the styles provided by jquery mobile.

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.