cferdinandi / reef

A lightweight library for creating reactive, state-based components and UI.

Home Page:https://reefjs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Event functions with parameters

davidbrooksio opened this issue · comments

Hi, this is more of a question (sorry) and therefore I haven't created a reduced test case but happy to create one if deemed necessary.

Firstly, thank you for fixing issue #184, this kind of relates to that fix.

Simply put; is it possible to have an onclick event that has parameters? At the moment it seems not as the only parameter is the event itself, I assume this is for XSS prevention but please can you confirm that this is the case.

An example of parameters is:

<button onclick="myFunction('Hello world')">Click me</button>

------

function myfunction(greeting) {
    console.log(greeting);
}

Thank you

I think that could be supported! Flagging this is a feature request/bug.

Thank you :)

Addressed in version 12.5.0