jQuery: Remove style added with .css() function
jQuery Practical exercise Part - I: Exercise-19
Remove style added with .css() function using jQuery.
Sample Solution:
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");
}
See the Pen jquery-practical-exercise-19 by w3resource (@w3resource) on CodePen.
Contribute your code and comments through Disqus.
Previous: Remove all CSS classes using jQuery.
Next: Distinguish between left and right mouse click with jQuery.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://www.w3resource.com/jquery-exercises/part1/jquery-practical-exercise-19.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics