Note that there are some explanatory texts on larger screens.

plurals
  1. POProblem while creating "copy-paste JavaScript"
    primarykey
    data
    text
    <p>I am trying to create a "copy-paste javascript" (it will work when user paste this javascript on the url bar and press the return key) for <a href="http://goo.gl/FvJcv" rel="nofollow noreferrer">http://www.vtunnel.com/</a>. My script will automatically create a form to the current page and value of the "textbox" will automatically filled up with the current url, and submit the form. I am trying this JavaScript:</p> <pre><code>javascript: _vtunnel_form=document.createElement('FORM'); _vtunnel_form.name='login'; _vtunnel_form.method='POST'; _vtunnel_form.action='http://www.vtunnel.com/index.php'; _vtunnel_h1=document.createElement('INPUT'); _vtunnel_h1.type='TEXT'; _vtunnel_h1.name='username'; _vtunnel_h1.value=encodeURIComponent(location.href); _vtunnel_form.appendChild(_vtunnel_h1); _vtunnel_h2=document.createElement('INPUT'); _vtunnel_h2.type='HIDDEN'; _vtunnel_h2.name='r4'; _vtunnel_h2.value=' checked'; _vtunnel_form.appendChild(_vtunnel_h2); _vtunnel_h3=document.createElement('INPUT'); _vtunnel_h3.type='HIDDEN'; _vtunnel_h3.name='fa'; _vtunnel_form.appendChild(_vtunnel_h3); _vtunnel_h4=document.createElement('INPUT'); _vtunnel_h4.type='HIDDEN'; _vtunnel_h4.name='if'; _vtunnel_h4.value=' checked'; _vtunnel_form.appendChild(_vtunnel_h4); document.body.appendChild(_vtunnel_form); _vtunnel_form.submit(); </code></pre> <p>Computed code of the "Vtunnel" form is like below: <img src="https://i.stack.imgur.com/g56wv.jpg" alt="Screenshot from Chrome"></p> <p>But it is not working properly. It is giving a 404 error. Why? Are there any solution?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload