<@U7A0KGURX> i have a suitelet where a user can se...
# general
y
@alien4u i have a suitelet where a user can select a file, or paste text directly into a text box. I want the client script to pick up if the user selected a file or pasted text.
c
jQuery is already on the page... not the best solution but it works.
jQuery('#custpage_my_thing').on('change', function () { ... });
b
👍thank you