diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-08-02 18:03:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 19:03:13 -0300 |
commit | 1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed (patch) | |
tree | 6de13b1b6c1cb5f270b49d4862c3f06b3e4a195c /files/pt-br/learn | |
parent | 86bfc6444602934695b25cee06320c49946e513c (diff) | |
download | translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.tar.gz translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.tar.bz2 translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.zip |
remove link 'title' attributes that's just the 'href' (pt-br, part 5) (#1849)
Diffstat (limited to 'files/pt-br/learn')
-rw-r--r-- | files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html b/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html index 24503747e8..d145e84f43 100644 --- a/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html +++ b/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html @@ -404,7 +404,7 @@ original_slug: Web/Guide/HTML/Forms/How_to_build_custom_form_widgets <p>In the code we are about to build, we will use the standard DOM API to do all the work we need. However, although DOM API support has gotten much better in browsers, there are always issues with legacy browsers (especially with good old Internet Explorer).</p> -<p>If you want to avoid trouble with legacy browsers, there are two ways to do so: using a dedicated framework such as <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external" title="https://github.com/julienw/dollardom">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, or the like, or by polyfilling the missing feature you want to use (which can easily be done through conditional loading, with the <a href="http://yepnopejs.com/" rel="external">yepnope</a> library for example).</p> +<p>If you want to avoid trouble with legacy browsers, there are two ways to do so: using a dedicated framework such as <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, or the like, or by polyfilling the missing feature you want to use (which can easily be done through conditional loading, with the <a href="http://yepnopejs.com/" rel="external">yepnope</a> library for example).</p> <p>The features we plan to use are the following (ordered from the riskiest to the safest):</p> |