help me code convert to Jqury Mobile
Hello
How is it possible to convert this code to Jquery Mobile
- <!DOCTYPE html>
- <html>
-
- <title>jQuery Mobile Slider</title>
- <head>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css"/>
- <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
- <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
-
- </head>
- <script>
- $(document).ready(function(){
- $( "#slider-fill" ).slider({
- range: "max",
- min: 10,
- max: 20,
- value: 1,
- slide: function( event, ui ) {
- $( "#text" ).css( { fontSize: ui.value} );
- }
- });
- });
-
- </script>
- </head>
- <body>
- <div data-role="page">
- <div input type="range" name="slider-fill" id="slider-fill" value="10" min="10" max="20" data-highlight="true" /></div>
-
- <font size="2" id="text">Text </font>
- </div>
- </body>
- </html>