Form Events
Perform form specific events on input field and button of form.
On this page
FormEvents:: | Description |
---|---|
FormEvents::blur | It will trigger blur event on the element. It removed focus from the element. |
FormEvents::click | It will click the form element. |
FormEvents::click-once | Our program features an intelligent click behavior that ensures elements are clicked only once, if the page is not fully refreshed. Let’s illustrate this with an example: Suppose there are five posts available on a page. If extension clicks an element once, our program registers that action. Now, if additional posts are loaded (e.g., through a “Load More” button), the program will not re-click the previously clicked posts. It intelligently avoids redundant clicks, providing a seamless user experience. By implementing this behavior, we enhance efficiency and prevent unintended interactions. Users can confidently interact with elements without worrying about accidental double-clicks. |
FormEvents::focus | It will trigger focus event on the element. |
FormEvents::select | It will trigger select event on the element. In input field and textarea it will select the text inside |
FormEvents::submit | It will submit the form in which element is present. |
FormEvents::clear | It will trigger clear event on the element. It clears field value. |
FormEvents::remove | It will remove element. |