WordPress Uncaught TypeError: $ is not a function

जब भी आप वर्डप्रेस पोस्ट में कोई Custom HTML में jQuery का उपयोग करते हैं तो जहा पर भी आपने $ का उपयोग किया हैं वह पर $ is not a function का Error Message show होता हैं,



var ls_str  = $('#input_str').val();

यदि आप यहाँ पर $ के स्थान पर jQuery लिखे इससे यह प्रॉब्लम Solve हो जाएगी।

var ls_find = jQuery('#input_str').val();

jQuery CDN Already WordPress में ऐड होती हैं इसलिए आपको अलग से कोई भी CDN की जरुरत नहीं होती।

Solution is Replace $ Sign to jQuery Keyword.

Quick Coding करने के लिए इस Tool का उपयोग करे।

Add a Comment

Your email address will not be published. Required fields are marked *