hub.eb?material_id=70

HTML element properties


The HTML element properties allow you to add IDs, CSS classes, custom attributes and client-side JavaScript event processing to individual controls. 

For this example, we'll add an onmouseover event to a button control.

Steps


1

Add a button to your form. Add some text.

Right click and select HTML element properties.

2

Select the HTML tab in Custom event handlers.

Select the onmouseover event from the drop down, then add some code:

alert("Hello!");

3

Run the form  and hover the mouse over the button. Voila!

Related