0
Fill in the blanks to handle the click event on the paragraph tag.
$("p"). ( () { alert("Clicked!"); );
8 odpowiedzi
+ 2
$("p").
on
("click",
function
() {
//some code
});
+ 1
$("p").click( function () {
alert("Clicked!");
});
0
is it a question copied from challenge
0
Fill in the blanks to handle the click event on the paragraph tag.
$("p").
click
(
function
() {
alert("Clicked!");
}
);
0
$("p").
on
("click",
function
() {
//some code
});
0
$("p").
click
(
function
() {
alert("Clicked!");
}
);
0
Fill in the blanks to add an event handler to the paragraph.
$("p").
on
("click",
function
() {
//some code
});
0
ON
FUNCTION