TheNovice Posted November 12, 2018 Share Posted November 12, 2018 Hi, I have multiple buttons which changes color when clicked. Is there any way I can click the button programmatically. Something like in javascript/jquery ($button.click()) so that it can run the actions specified in the button's properties. Thanks!! Quote Link to comment Share on other sites More sharing options...
AzeoTech Posted November 15, 2018 Share Posted November 15, 2018 No. This is an unusual feature of Javascript/jquery not typical to most programming languages. Usually the way you would handle this is to put whatever script you have that runs when you click inside a function (Sequence) and have the button call that function. Then you can also call that function from anywhere else. Quote Link to comment Share on other sites More sharing options...
TheNovice Posted November 16, 2018 Author Share Posted November 16, 2018 Yes, I understand it's not a usual feature. Thanks, I appreciate your help!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.