alert
Posted: Thu Aug 09, 2012 11:35 pm
How to use the customized alert box in tiggzi?
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 to use the customized alert box in tiggzi?
Are your referring to alert(...)?
Yes. I have given a textbox name as 'text' and tried to display that value in alert box. But it's not working. Please guide me.
var vname= Tiggr('text');
alert(vname);
code
Tiggr('text")
/code
gives you the jQuery Mobile element. To get the text you need to do:
code
Tiggr('text").text();
/code