Reputation: 67
is there any way to make custom alert or popup screen in phonegap .actually i want to make alert which have 3 row (example).on clicking the first row it will show description of that row (by expanding the length). but on clicking the second row it will close the description of first row and open the description of second row .
can you please help me?
Upvotes: 3
Views: 2318
Reputation: 3125
If you want to show just an alert you can use just JavaScript: alert();
For customized alerts you can use a plugin like SimpleModal:
If you need an advanced customization you can try ShadowBox:
Upvotes: 1