Guest User

Untitled

a guest
May 20th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function reloadImage(img) {
  2. var src = img.src;
  3. var iframe = document.createElement('iframe');
  4. iframe.onload = function() {
  5. iframe.onload = function() {
  6. // clean up properly
  7. document.head.removeChild(iframe);
  8. iframe.onload = function() {};
  9. iframe = null;
  10. // reload
  11. img.src = src;
  12. };
  13. iframe.contentWindow.location.reload(true);
  14. };
  15. iframe.src = src;
  16. document.head.appendChild(iframe);
  17. }
Add Comment
Please, Sign In to add comment