From 21d79fa47f10cd652de87da6c2720625eee2ff6f Mon Sep 17 00:00:00 2001 From: Saiful Date: Fri, 5 Mar 2021 16:47:09 +0600 Subject: [PATCH 1/2] translate dom modification --- .../07-modifying-document/article.md | 271 +++++++++--------- 1 file changed, 135 insertions(+), 136 deletions(-) diff --git a/2-ui/1-document/07-modifying-document/article.md b/2-ui/1-document/07-modifying-document/article.md index 75ce1fbb0..3f4017e1a 100644 --- a/2-ui/1-document/07-modifying-document/article.md +++ b/2-ui/1-document/07-modifying-document/article.md @@ -1,14 +1,14 @@ -# Modifying the document +# ডকুমেন্টকে পরিবর্তন -DOM modification is the key to creating "live" pages. +DOM মোডিফিকেশনের মাধ্যমে আমরা আমাদের পেইজ কে আরো "ডায়নামিক প্রাণবন্ত" করতে পারি। -Here we'll see how to create new elements "on the fly" and modify the existing page content. +এখানে আমরা দেখব কিভাবে বিদ্যমান পেজের কন্টেন্ট সমূহকে "স্বতঃস্ফুর্তভাবে" পরিবর্তন করতে পারি। -## Example: show a message +## উদাহরণ: একটি মেসেজ দেখানো -Let's demonstrate using an example. We'll add a message on the page that looks nicer than `alert`. +চলুন একটি উদাহরণের সাহায্যে এটি বুঝি। আমরা একটি মেসেজ এলিমেন্ট লিখব যা `alert` এর মত দেখায়। -Here's how it will look: +এটি দেখতে এমন হবে: ```html autorun height="80"