Open In App

How to create a Search Input using jQuery Mobile ?

jQuery Mobile is a web based technology used to make responsive content that can be accessed on all smartphones, tablets and desktops. In this article, we will be creating a search input using jQuery Mobile.

Approach: 



Example:






<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
  
    <script src=
    </script>
  
    <script src=
    </script>
</head>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <h4>
            Design a Search Input using jQuery Mobile
        </h4>
        <form style="width: 50%;">
            <label for="searchArea">
                Search Content
            </label>
              
            <input type="search" name="searchArea" 
                id="searchArea" value="" 
                placeholder="Search Text...">
        </form>
    </center>
</body>
  
</html>

Output:


Article Tags :