Input URL autocomplete attribute
Definition and Usage
autocomplete
Set or return the value of the autocomplete attribute in the URL field.
After enabling automatic completion, the browser will automatically complete values based on the values previously entered by the user.
Tip:In some browsers, you may need to enable the automatic completion feature to make it work properly (check under "Preferences" in the browser menu).
See also:
HTML Reference Manual:HTML <input> autocomplete প্রতিশব্দ
Example
Example 1
Set automatic completion to off in the URL field:
document.getElementById("myURL").autocomplete = "off";
Example 2
return the status of automatic completion:
var x = document.getElementById("myURL").autocomplete;
Syntax
return autocomplete attribute:
urlObject.autocomplete
set autocomplete attribute:
urlObject.autocomplete = "on|off"
প্রতিশব্দ মান
মান | বর্ণনা |
---|---|
অন | ডিফল্ট।ব্রাউজার ব্যবহারকারীর আগের মূল্য অনুযায়ী মূল্য পূরণ করবে。 |
অফ | ব্যবহারকারীর প্রত্যেক ব্যবহারের জন্য, প্রত্যেক URL ফিল্ডে মূল্য ভরতে হবে।ব্রাউজার স্বয়ংক্রিয়ভাবে এন্ট্রি পূরণ করবে না。 |
প্রযুক্তিগত বিবরণ
ফলাফল: | শব্দমালা মান, যা স্বয়ংক্রিয় পূরণের অবস্থা নির্দেশ করে |
---|
ব্রাউজার সমর্থন
চ্রোম | এডজ | ফায়ারফক্স | স্যাফারি | অপেরা |
---|---|---|---|---|
চ্রোম | এডজ | ফায়ারফক্স | স্যাফারি | অপেরা |
সমর্থন | 10.0 | সমর্থন | সমর্থন না | সমর্থন |