datalist: example.html: fix typo url -> URL - jscancer - Javascript crap (relatively small)
 (HTM) git clone git://git.codemadness.org/jscancer
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f67cbfde6d8e66a9b756cfb50ce3078b0253352c
 (DIR) parent b854b15d50265f3224377c2ba2df0f7a9462368a
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Thu,  9 Dec 2021 18:35:47 +0100
       
       datalist: example.html: fix typo url -> URL
       
       Diffstat:
         M datalist/example.html               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/datalist/example.html b/datalist/example.html
       @@ -9,7 +9,7 @@
        
        <form method="post" action="">
        
       -<p>Inline &lt;datalist&gt;</p>
       +<p>Inline &lt;datalist&gt;:</p>
        
        <label for="os">OS: </label>
        <input type="text" placeholder="Select OS..." value="" list="list" name="os" id="os" class="datalist" /><br/>
       @@ -32,7 +32,7 @@
        <label for="remote">OS: </label>
        <input type="text" placeholder="Select OS..." value="" data-url="example-data.json?q=" name="remote" id="os" class="datalist" /><br/>
        
       -<p>Using XMLHttpRequest + custom url function + JSON:</p>
       +<p>Using XMLHttpRequest + custom URL function + JSON:</p>
        
        <label for="remotecustom">OS: </label>
        <input type="text" placeholder="Select OS..." value="" data-urlfn="custom_urlfn" name="remotecustom" id="os" class="datalist" /><br/>