I am working on a sample app using titanium. I have created a webview and loaded a local html as shown below
var webview = Ti.UI.createWebView({ borderWidth:0, paddingRight:10,width:310,top:25, height:210,left:5 });
webview.html = '<div><a href="http://google.com" id="ggle"></a></div>'
is it possible for me to add event listener for the anchor tag specified in the html? if so how? if not please suggest me anyother possible solution.
thanks.