diff --git a/2-ui/4-forms-controls/1-form-elements/article.md b/2-ui/4-forms-controls/1-form-elements/article.md index 1c6188b5b..a8d2b45cd 100644 --- a/2-ui/4-forms-controls/1-form-elements/article.md +++ b/2-ui/4-forms-controls/1-form-elements/article.md @@ -1,23 +1,23 @@ -# Form properties and methods +# Form properties এবং methods -Forms and control elements, such as `` have a lot of special properties and events. +ফর্মস এবং কন্ট্রোল এলিমেন্ট সমূহের অনেক স্পেশাল প্রপার্টি এবং ইভেন্ট আছে, যেমন ``। -Working with forms will be much more convenient when we learn them. +ফর্মের সাথে কাজ করতে করতে তা শিখা আমাদের জন্য সুবিধাজনক। -## Navigation: form and elements +## Navigation: form এবং elements -Document forms are members of the special collection `document.forms`. +ফর্মস সমূহ ডকুমেন্ট এর একটি স্পেশাল কালেকশন `document.forms`। -That's a so-called "named collection": it's both named and ordered. We can use both the name or the number in the document to get the form. +এটিকে বলা হয় "named collection": এটির নাম এবং ইনডেক্সিং উভয়ই আছে। আমরা নাম বা ইনডেক্স উভয়ের সাহায্যেই ফর্ম এলিমেন্টকে অ্যাক্সেস করতে পারি। ```js no-beautify document.forms.my - the form with name="my" document.forms[0] - the first form in the document ``` -When we have a form, then any element is available in the named collection `form.elements`. +একটি ফর্মের সকল এলিমেন্ট `form.elements` এ কালেকশন হিসেবে থাকে। -For instance: +উদাহরণস্বরূপ: ```html run height=40