I created a local storage variable "displayStatus" via the builder UI. Refer to the picture where the "status" is a boolean data field stored in parse.com.
Upon the rest service execute completion, I added the following JS but nothing happened. Why?
var alertStatus = localStorage.getItem("displayStatus");
if (alertStatus == true){
Tiggzi('labelAlert').show();
Tiggzi('contactNo').show();
alert("Please call owner");
};