Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
JAVASCRIPT
29
button function pageTitle
Guest on 17th September 2023 09:39:32 PM
$
(
document
)
.
ready
(
function
(
)
{
$
(
"button"
)
.
click
(
function
(
)
{
$
(
"#pageTitle"
)
.
html
(
"<h1>Hello, World!</h1>"
)
;
}
)
;
}
)
;
Raw Paste
$(document).ready(function(){ $("button").click(function(){ $("#pageTitle").html("<h1>Hello, World!</h1>"); }); });
Login
or
Register
to edit or fork this paste. It's free.