jquery / learn.jquery.com

jQuery Learning Center web site content

Home Page:https://learn.jquery.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jquery-1.8.2.min.js Vulnerable issue on Play Store

cmtanmy opened this issue · comments

I have an issue with jquery-1.8.2.min.js vulnerable issue on Play store

SNYK-npm:jquery:20110606
SNYK-npm:jquery:20150627
SNYK-JS-JQUERY-174006

How to update the latest libraries.

If i update to another version example <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> i having an issue on the layout display, and when click on the button nothing happen.
I need to use data-theme="b" Blue Themes, Please advise

Below is my sample Visual Studio 2017 HTML5 Apache Cordova coding.

`

<title>jQuery Mobile: Swatch Themes</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css">
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="https://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>

Demo

    <div data-role="content">
        <form id="form">
            <label> User </label>
            <input type="text" id="userName" name="userName" value="">
            <label> Password </label>
            <input type="password" id="password" name="password" value="">

            <div class="containing-element">
                <label for="flip-min">Auto Login Next Time</label>
                <select name="remember" id="remember" data-role="slider" data-theme="b">
                    >
                    <option value="false">Off</option>
                    <option value="true">On</option>
                </select>
            </div>

            <button id="submiten" class="btn">English</button>   <span>&nbsp;</span>
      

        </form>
    </div>

    
    <div style="text-align: center;">
        Demo App, Copyrights 2019
    </div>

   
</div>
<!--End Login Page-->
`