Advertisement
I_GRIN_I

Untitled

Mar 31st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <form>
  2.     <table id="table">
  3.         <tr>
  4.             <td><p>form</p></td>
  5.             <td>
  6.                 <input type="text" value="" id="vkid" >
  7.                 <input type="button" value="Перейти" id="but" onclick="gotovkpage()">
  8.             </td>
  9.         </tr>
  10.     </table>
  11. </form>
  12. <script>
  13. function gotovkpage(){
  14.   var id = document.getElementById("vkid").value
  15.   window.location = "https://vk.com/" + id
  16. }
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement