+1
Beantwoord
Get HTML content from the web tag?
Can I get the HTML content from a web tag?
I am trying to manage an oauth process from a server perspective and the onnavigation (set at 'high' navsensitivity) doesn't give me enough info to determine the step of oauth I am in.
I am trying to manage an oauth process from a server perspective and the onnavigation (set at 'high' navsensitivity) doesn't give me enough info to determine the step of oauth I am in.
Customer support service by UserEcho
You can return the URL that is clicked in a web view based off an onnavigation action attribute.
<wire>
<main>
<web name="hi" alias="HI" width="100%" height="100%" url="" pagetofit="yes" onnavigation="set-state"></web>
</main>
<actions>
<action name="oninit" oninit="yes">
<assign property="object:hi.url" value="http://rarewire.com" />
</action>
<action name="set-state">
<alert message="[object:HI.navigation]"/>
</action>
</actions>
</wire>