I tried loading the print in an iframe, and then putting it where it intended. It works for me. Using jQuery. Here he is:
Create a .js file (I named it hackseal.js)
$(function () { if (typeof(vs_hack) !== 'undefined') { return; } vs_hack = true; var iframe = document.createElement('iframe'); var html = '<script src="url_to_verysign" type="text/javascript"></script>'; iframe.style.display = 'none'; document.body.appendChild(iframe); iframe.contentWindow.document.open(); iframe.contentWindow.document.write(html); iframe.contentWindow.document.close(); iframe.onload = function () { var copy = ['dn', 'lang', 'tpt', 'vrsn_style', 'splash_url', 'seal_url', 'u1', 'u2', 'sopener', 'vrsn_splash', 'ver', 'v_ua', 're', 'v_old_ie', 'v_mact', 'v_mDown', 'v_resized']; for (var copy_i in copy) { window[copy[copy_i]] = iframe.contentWindow[copy[copy_i]]; } $('script#seal-sign').replaceWith(iframe.contentWindow.document.body.innerHTML); } });
Change the source code on this
<script type="text/javascript" src="url_to_verysign"></script>
to that
<script id="seal-sign" type="text/javascript" src="url_to_hackseal.js"></script>
source share