I user PARSE to make a list of data and I want when I click to one item of the list to pop up an alert box with other info about that data.
I user PARSE to make a list of data and I want when I click to one item of the list to pop up an alert box with other info about that data.
If you want to open the standard browser alert, simply read the data from the page when you open the alert. Or, on click, save the data into local storage and then read it in the alert or popup.
I try ...and is not working. Please give me a solution.
The alert box is empty.
You need to show what you tried and what exactly doesn't work.
var pop = Tiggr('details');
alert(pop.val());
where "details" is the label with text from REST API
If it's a label component, you need to use pop.text(). val() is for input components.