Advertisement
Kazikodi

Untitled

Jun 10th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <form id='sherehe' action='#' method='POST' style='background-color:yellow;'>
  2. <img type='submit' src='pictured/sharepictures/sea.png' id='imagebutton' value='GET-THESE-VALUES/TEXTS' style=' cursor:pointer; border:2px solid red; border-radius:10px; width:40%;  margin-left:2px; height:40%;'></img>
  3. </form>
  4.  
  5. //javascript
  6. <script type="text/JavaScript">
  7.         $(document).ready(function () {
  8.              
  9.               //listen to submit button for share
  10.               $('#sherehe').click(function (e) {
  11.                 e.preventDefault();
  12.                
  13.                 var linkTogo = $("#linkTogo").val();
  14.  
  15.                 $.post("server.php", {
  16.                  linkTogo : linkTogo ,
  17.                  
  18.                 });
  19.               });
  20.              
  21.             });
  22.            
  23.             </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement