Hi Igor, thank you for your reply.
I have tried the answers in the forum one of which is
window.plugins.childBrowser.showWebPage('http://www.google.com', { showLocationBar: true });
So I add a launch screen and then I select
Events Startscreen device ready run javascript and add the above code.
When I build this and install to my mobile, the launch works fine and then nothing happens.
I have also tried this from Katya
function myNavigate(url) {
var cb;
if (window.plugins) {
cb = window.plugins.childBrowser;
}
if (cb != null) {
cb.showWebPage(url);
} else {
window.open(url);
};
}
On Click event instead of code:
var childBrowser = ChildBrowser.install();
window.plugins.childBrowser.showWebPage('a href="http://" rel="nofollow"http:///a...');
run:
myNavigate('a href="http://" rel="nofollow"http:///a...');
but again this does not seem to work or I am not doing this correctly?!
Thank you for your help
EDIT - For the image I did not use the first code, I have used on click navigateto then added URL
Apologies for misleading.