Reputation: 243
I have a page with a Select Option
but in my AMP Page i cant see this element,
What i need to add to this work?
Upvotes: 0
Views: 67
Reputation: 3934
For navigate the page use AMP.navigateTo
<select on="change:AMP.navigateTo(url=event.value)">
<option selected>-Select a Page-</option>
<option value="YOUR-PAGE-URL">Home Page</option>
<option value="YOUR-PAGE-URL">About Us</option>
<option value="YOUR-PAGE-URL">Camping Tips</option>
</select>
Upvotes: 1