मेरा मामला भी ऐसा ही है, लेकिन यह ऐसा अवसर है जब आपके पास कुछ foobar
- कुछ होता है , और आप केवल एक - एक क्लिक पर बंद करना चाहते हैं:
मूल मामला खोजें
$(".foobar-close-button-class").on("click", function () {
$(this).parents('.foobar').fadeOut( 100 );
// 'this' - means that you finding some parent class from '.foobar-close-button-class'
// '.parents' -means that you finding parent class with name '.foobar'
});
बाल मामले का पता लगाएं
$(".foobar-close-button-class").on("click", function () {
$(this).child('.foobar-close-button-child-class').fadeOut( 100 );
// 'this' - means that you finding some child class from '.foobar-close-button-class'
// '.child' -means that you finding child class with name '.foobar-close-button-child-class'
});