Question

How can I make it more easier?

$("#one").click(function() { $("#container").fadeOut(200); }); $("#two").click(function() { $("#container").fadeOut(200); }); $("#three").click(function() { $("#container").fadeOut(200); }); $("#four").click(function() { $("#container").fadeOut(200); });

Était-ce utile?

La solution

Either add class to each element .class

$('.class').click(function () {
    $("#container").fadeOut(200);
});

or combine the ids to the selector

$('#one,#two,#three,#four').click(function () {
    $("#container").fadeOut(200);
});
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top