6
जावास्क्रिप्ट ऑनक्लिक फ़ंक्शन के लिए इस तत्व को कैसे पास करें और उस क्लिक किए गए तत्व में एक वर्ग जोड़ें
मेरे पास नीचे के रूप में एक html नेविगेशन कोड था function Data(string) { //1. get some data from server according to month year etc., //2. unactive all the remaining li's and make the current clicked element active by adding "active" class to the element $('.filter').removeClass('active'); $(this).addClass('active'); } <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> …