Wednesday 05 January 2011 5:24:35 am
"
if you're sure it's a javascript call and not a template operator call, find it the browser source code and check pagelayout template or the template including the factbox..or do a search by the javascript function..or the js is in an external source..
"
the template of the factbox has this piece of code about Javascript call: {*?template charset=utf-8?*} <div class="factbox object-{if is_set($align)}{$align}{else}left{/if}"> <div class="border-box factbox-header"> <div class="border-tl"><div class="border-tr"><div class="border-tc"></div></div></div> <div class="border-ml"><div class="border-mr"><div class="border-mc"> <div class="box-content"> <h2>{if is_set($title)}{$title}{/if} </h2> </div> </div></div></div> </div> <div class="border-box factbox-content"> <div class="border-ml"><div class="border-mr"><div class="border-mc"> <div class="box-content"> {$content} <form name="mutuo" method="post" action=""> <p style="margin-left: 5px;"> <label>Somma da assicurare</label> <input type="text" maxlength="7" onfocus="javascript:ripristina(this);" value="" class="login"/> <label>Durata del mutuo</label> <input type="text" size="5" maxlength="2" id="anni_banca" name="anni_banca" value="" class="login"/> <a class="btt_entra" href="javascript: calcola_mutuo_banca();" style="position: absolute; margin-top: 2px; margin-left: 20px;">CALCOLA</a> </p> <div> </div> <div> </div> </form> </div> </div></div></div> <div class="border-bl"><div class="border-br"><div class="border-bc"></div></div></div> </div> </div> Thus, the function name looks to be "calcola_mutuo_banca()", but i'm still not able to locate the source! :/ :/
|