Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function popupPlace() {
  2. var mywindow = window.open('Details.html','_self');
  3. mywindow.dataFromParent = placeListAll;
  4. mywindow.init();
  5. }
  6.  
  7. <script type="text/javascript">
  8. var dataFromParent;
  9. function init() {
  10. document.getElementById('Place').innerHTML=dataFromParent;
  11.  
  12. }
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement