Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Javascript in UIWebView callback to C/Objective-C

I have an application which has a UIwebView with and its delegate methods in that one URL has source like

button onclick="window.close();">Close Me

and when I click on that not any of delegate method called.

How can I get that button close me clicked?

share|improve this question
1  
Look at stackoverflow.com/questions/10843736/… for a way of notifying the delegate. – Phillip Mills Nov 8 '12 at 12:13
That answer will help i guess, but i cant get how it use in my code, can u plz help for that ? – i-bhavik Nov 9 '12 at 5:31

marked as duplicate by trojanfoe, bpeterson76, Chad, philant, Bertrand Marron Nov 8 '12 at 22:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Seems to me you only use HTML in the browserview and not defining something like jquerymobile or similar to your project.. So this will never succeed!

Try to append something like this {

http://stackoverflow.com/questions/4290824/how-to-load-a-uiwebview-with-a-close-button-on-top

} elseif( you do use jquery mobile ) {

$( "#myPopupDiv" ).popup( "close" )

} else {

 LOL

}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.