Thank you so much for rely.
Is there some method to swap csv. ?
Kindly, give me some help if you don't mind.
Thank you
<!DOCTYPE html><head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1"><link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"><script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script><script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>      <script>         $(document).on("pagecreate","#page1",function() {            $("p").on("swipe",function() {               $("span").text("swipe event occurred!!!");            });         });</script>
</head>      <body>      <div data-role = "page" id = "page1">         <div data-role = "header">            <h2>Header</h2>         </div>
         <div data-role = "main" class = "ui-content">            <p>It will display the text when you swipe here.</p>            <span style = "color:orange"></span>         </div>
         <div data-role = "footer">            <h2>Footer</h2>         </div>            </div>   </body></html> $("span").text("swipeleft!!!");
$("span").text("swiperight!!!");
$("span").text(window.AppInventor.getWebViewString());
$("p").on("swipeleft",function(){
and
$("p").on("swipeleft",function(){
$("body").on("swipeleft",function(){
and
$("body").on("swiperight",function(){
<!DOCTYPE html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>    $(document).on("pagecreate","#page1",function() {        $("body").on("swipeleft",function(){        $("span").text("swipeleft!!!");        });    });</script> <script>    $(document).on("pagecreate","#page1",function() {        $("body").on("swiperight",function() {        $("span").text("swiperight!!!");        });    });</script>
</head>   <body>    <div data-role = "page" id = "page1">                <div data-role = "header">        </div>
        <div data-role = "main" class = "ui-content">            <span style = "color:orange"></span>        </div>        	</div>	</body>
</html>$("p").on("swipeleft",function(){
and
$("p").on("swipeleft",function(){
$("body").on("swipeleft",function(){
and