Function call

Post Reply
Natter
Posts: 1244
Joined: Mon May 14, 2007 9:49 am

Function call

Post by Natter »

Hi,

There is a WebView object and an html text is loaded into it using the :setHtml method.
There is an aaa() function in this text.

Code: Select all | Expand

 function aaa() {
     alert(12345) ;
  }
If I try to call this function :Eval('aaa()'), then nothing happens.

If I do so:

Code: Select all | Expand

<button id='tst' style='display:none;'>Test function</button>

  document.getElementById('tst').onclick = aaa ;
  function aaa() {
     alert(12345) ;
  }
:Eval('document.getElement.ById("tst").click') - then the aaa() function is normally executed

Why can't I get a direct function call ?
User avatar
Antonio Linares
Site Admin
Posts: 42594
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 38 times
Been thanked: 86 times
Contact:

Re: Function call

Post by Antonio Linares »

Please try using :Eval('alert( 12345 )')
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply