top of page
bottom of page
let fullText; let shortText; $w.onReady(function () { const shortTextLength = 200; fullText = $w("#Text1").text; shortText = fullText.substr(0, shortTextLength) + "..."; $w("#Text1").text = shortText; }); export function myButton_click(event) { if ($w("#Text1").text === shortText) { $w("#Text1").text = fullText; $w("#myButton").label = "Show Less"; } else { $w("#Text1").text = shortText; $w("#myButton").label = "Show More"; } }