I want to try load a private webpage in uiwebview. When I try to open it from the native Safari app on my iPhone, everything works well.
But when I try to open in uiwebvie, the buttons on the webpage doesn't work. Buttons are as follows
<a class="actionButtonWithoutImg" href="javascript:__doPostBack('','')">Edit</a>
Do you have any idea ?
__doPostBack('','')defined in the file you are loading? is it loaded from an external js file? also i would recommend you mark up those links in this manner:<a href="#" onclick="javascriptFunction();">link</a><a href="#" onclick="javascriptFunction();">link</a>andhref="javascript:__doPostBack('','')"both of them are working. I don't understand the problem...