container HTML
how do I load a page 'http://wahogna.com/' + localStorage.getItem ('parameters')
inside the container HTML
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
how do I load a page 'http://wahogna.com/' + localStorage.getItem ('parameters')
inside the container HTML
You can use iframe to load another URL.
Excuse my ignorance but I'm new at this, could you give me an example code please, and where i write the code
You will find an example here: http://docs.appery.io/documentation/b....
You can also search for embedding an iframe in a jQuery Mobile app.
I'm sorry but I have not managed to work, I did not show anything on the page, the code I'm using is:
$('', {
name: 'myFrame',
id: 'myFrame',
width: '300',
height: '250',
src: 'http://www.wahogna.com/web'
}).appendTo('body');
where 'myFrame' is the container name, and 'scr' is the URL page to show
"$('', {
name: 'myFrame',
id: 'myFrame',
width: '300',
height: '250',
src: 'http://www.wahogna.com/web'
}).appendTo('body');"
excuseme this is the code
You need to specify the tag name (iframe):
precode
$('<iframe />', {
name: 'myFrame',
id: 'myFrame',
width: '300',
height: '250',
src: 'http://www.wahogna.com/web'
}).appendTo('body');
/code/pre
which means this error in console
Uncaught TypeError: Cannot call method 'getBounds' of undefined
mM
(anonymous function)
I don't know, check the embedded page.