Q:

Remove style added with .css() function using jQuery

0

Remove style added with .css() function using jQuery.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

HTML Code :

<!DOCTYPE html>
  <html>
  <head>
  <script src="https://code.jquery.com/jquery-git.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Check if internet connection is working</title>
  </head>
  <body>
  <h1 id="MyInput">jQuery Exercises</h1>
  
  <input type="button" value="Remove border style" onClick="remove_style()" />
 </body>
  </html>

CSS Code:

body { font-family: sans-serif; }
h1 {
    margin: 10px 0;
    padding: 0 5px;
    font-size: 2em;
    border: 2px double green;
}

JavaScript Code:

function remove_style() {
$("#MyInput").css("border", "0");
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now