website: use real buttons for website up
This commit is contained in:
parent
f69be9b2c0
commit
4f20b2ede3
6
try.html
6
try.html
|
@ -984,7 +984,7 @@ is where the current server got started.
|
|||
</main>
|
||||
|
||||
<dialog id='copyDialog'>
|
||||
<form id='copyForm'>
|
||||
<form id='copyForm' action='javascript:void 0'>
|
||||
<p><img id='copyImg'>
|
||||
</p><p><label> Link <input type='url' name='url'/></label>
|
||||
</p><p><label> Image <input type='url' name='img'/></label>
|
||||
|
@ -1038,8 +1038,8 @@ is where the current server got started.
|
|||
</p>
|
||||
<p>The URLREST should be URLEncoded:<br>
|
||||
<input type="text" id="websiteDocUrlField" placeholder="Paste your URL (without the protocol) here" /><br>
|
||||
<input type="button" onclick="(function(el) { el.value = encodeURIComponent(el.value); })(document.getElementById('websiteDocUrlField'))" value="Encode" />
|
||||
<input type="button" onclick="(function(el) { el.value = decodeURIComponent(el.value); })(document.getElementById('websiteDocUrlField'))" value="Decode" />
|
||||
<button onclick="(function(el) { el.value = encodeURIComponent(el.value); })(document.getElementById('websiteDocUrlField'))">Encode</button>
|
||||
<button onclick="(function(el) { el.value = decodeURIComponent(el.value); })(document.getElementById('websiteDocUrlField'))">Decode</button>
|
||||
</p>
|
||||
<p><code>[OPTIONS]</code> can be:
|
||||
<ul>
|
||||
|
|
Loading…
Reference in New Issue
Block a user