views:

576

answers:

1

I'm using a UIWebView to display a third party web app in my native iPhone application. The third party app uses HTML5's database storage. I'm using stringByEvaluatingJavaScriptFromString to modify the web app's dom a bit, but there's one thing I'm having a lot of trouble trying to do.

What I'd like to do is use javascript to create a trigger on the sqlite database that the web app creates via HTML5 specs, and have that trigger execute some javascript as a result. Is there any way I can make the sqlite trigger execute some javascript whenever the trigger fires?

A: 

Never did find a way to do this.

Redth