T O P I C R E V I E W |
petran |
Posted - 24 Nov 2009 : 13:28:08 I'm working on an extension to place Google maps in a page. This requires a Javascript call like this: onload="jsCheckZoom();initialize();". (jsCheckzoom made by DHE). Of course I can place it there manually in the page-properties window, but it would be better to let the extension take care of that. Is there a way to get that done? |
4 L A T E S T R E P L I E S (Newest First) |
s.dav |
Posted - 10 Dec 2014 : 02:28:42 alii, mi mandi un esempio via email? Controlla nella pagina dei contatti l'indirizzo |
sajjad123 |
Posted - 09 Dec 2014 : 23:55:02 Ciao,
a me il data picker non apre nessun calendario e mi rimanda al top pagina... dove sbaglio? Nella pagina io ho semplicemente creato un form e poi inserito il data picker, niente di +. Debbo forse fare altre azioni?
Grazie. |
petran |
Posted - 25 Nov 2009 : 11:54:29 It worked when I placed it in the body, Thanks |
s.dav |
Posted - 25 Nov 2009 : 09:14:38 You can simply write in the header code of your extension this javascript code (not tested but it should work):
<script language="javascript" type="text/javascript"> <!--
window.onload=myInit;
function myInit() { jsCheckZoom(); initialize(); }
//--> </script> |