Skip to content

Instantly share code, notes, and snippets.

@wei-lee
Forked from feedhenry-gists/gist:1015279
Created November 3, 2011 10:14
Show Gist options
  • Save wei-lee/1336195 to your computer and use it in GitHub Desktop.
Save wei-lee/1336195 to your computer and use it in GitHub Desktop.
Web View Call
var url = http://www.example.com;
$fh.webview(
{'url':url, 'title':"hello"},
function(result){
if(result === "opened"){
//webview window is now open
}
if(result === "closed"){
//webview window is now closed
}
},
function(result){
alert(result)
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment