Guest User

Untitled

a guest
Oct 17th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <script>
  2. var insta = "<?php echo $instapost; ?>";
  3. function addinsta() {
  4. document.getElementById("txtpost").innerHTML = insta;
  5. }
  6. </script>
  7.  
  8. <button id="instabutton" onclick="addinsta()">Generate Post</button><br />
  9. <textarea id="txtpost" name="txtpost"></textarea>
  10.  
  11. <script>
  12. var insta = <?php echo json_encode($instapost); ?>;
  13.  
  14. function addinsta() {
  15. document.getElementById("txtpost").value = insta;
  16. }
  17. </script>
  18.  
  19. <script>
  20. var insta = `<?php echo $instapost; ?>`;
  21. function addinsta() {
  22. document.getElementById("txtpost").innerHTML = insta;
  23. };
  24. </script>
Add Comment
Please, Sign In to add comment