Remove style added with .css() function using jQuery.
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"); }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
HTML Code :
CSS Code:
JavaScript Code: