Search.../

value

Gets the value (1-5) that corresponds to the icon that the mouse entered.

Type:

numberRead Only

Was this helpful?

Get information about the icon that the mouse entered

Copy Code
1$w("#myRatingsInput").onIconMouseIn( (event) => {
2 let label = event.label; // "Good"
3 let value = event.value; // 3
4} );