Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> $( function() { $( "p" ).click( function() { $( this ).css( { "background": "gold", "font-size": "3em", "padding": "40" } ); }); }); </script> <p>Click me</p>
Preview