HTML label tag use in form tag in hindi

HTML label tag use in form tag in hindi

HTML में label tag का इस्तेमाल form controls ‘input’, ‘seelect’, ‘textarea’ or ‘button’ element के लिए label define करने के लिए कर सकते है!. label tag form control की accessibility और usability को improve करने में मदद करता है!.

Read More

How to add event listener to all elements with class in JavaScript in hindi

JavaScript में सभी elements में event listener कैसे add कर सकते है ?: यह इस post में हम आपको बताएँगे की कैसे आप JavaScript का इस्तेमाल करके ke साथ ही सभी elements में event listener add कर सकते है, हमें हरेक element को select करने के लिए कई method available है, जैसे की…

Read More

How to use arrays and objects in Javascript in hindi

how to use arrays and objects in javascript in hindi

JavaScript में array और object का इस्तेमाल करना सीखे| array और object को कैसे create किया जाता है, array elements को कैसे access किया जाता है, तथा उन्हें कैसे modification किया जाता है, इसके बारे में जाने…

Read More

Date() function in javascript in hindi

date() function in javascript in hindi

Javascript में Date() function time में specific moments का representing करने वाले Date object के creation की facility provide करता है, जिससे developer को dates manipulate करने, date components को retrieve करने और web applications में date related operation perform करने में सक्षम बनता है!.

Read More

How to open modal popup using jquery on button click in hindi

How to open modal popup using jquery on button click in hindi

जिनको jQuery में रुचि है, उनके लिए यह उपयोगी हो सकता है। “jQuery का उपयोग करके बटन click पर modal popup कैसे open करे” हम jQuery का उपयोग करके HTML और CSS के साथ एक modal popup open करने का तरीका सीखेंगे।

Read More

JavaScript Recursive Function In Hindi

javascript recursive function in hindi

JavaScript में recursive function एक ऐसा function है, जो execution के दौरान खुद को call करता है!. यह technique repetitive या self-similar structure वाली problem को solved करने का एक powerful तरीका हो सकता है!. Recursive function में दो parts होते है!. Base case और Recursive case

Read More