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); });

Was it helpful?

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);
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top