HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>In order to add a task to a page, you need to obtain its name in one way or another. It is written in the input field, and it can be read from there. To do this, you need to call the value input property. It stores information that has been entered in the field.</p>
1 <p>In order to add a task to a page, you need to obtain its name in one way or another. It is written in the input field, and it can be read from there. To do this, you need to call the value input property. It stores information that has been entered in the field.</p>
2 input.value;<p>We can save this string and then add it to the task markup.</p>
2 input.value;<p>We can save this string and then add it to the task markup.</p>
3 <p>To read the value from the input field, you must find this filed and write it to a variable. So this is what we will do. Then find the field contents and output them to the page.</p>
3 <p>To read the value from the input field, you must find this filed and write it to a variable. So this is what we will do. Then find the field contents and output them to the page.</p>