is it possible to embed groovy script in html like in javascript? I want to have an onclick button event that use groovy script instead of javascript
Thanks
|
is it possible to embed groovy script in html like in javascript? I want to have an onclick button event that use groovy script instead of javascript Thanks |
|||||
|
|
You can't You could use AJAX to call the webserver which would run a groovy script, but you can't run groovy in the browser like JavaScript. (For completeness in this answer, I guess you could roll an applet with groovy support, and then use the applet to execute bits of groovy, but I would just write the script in javascript and miss out this sort of Rube-goldberg machination) |
||||
|
|