Styling with JQuery
Styling with JQuery
I want to add styling using jquery. What Iwant to happen is when the "cliterace" is clicked the "cliterace" becomes bold and enlarged the code I have so far is
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Untitled Document</title>
- <style>
- .organ {
- font-size: 46px;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <a href="#">Cliterace</a>
- <script src="js/jquery.js"></script>
- <script>
- $("a").click(function( event ){
- $("a").addClass("organ");
- });
- </script>
-
-
- </body>
- </html>