Is it possible onKeypress have more than 1 event within one input box?

What i tried so far is is not possible. It will always run first method “noComma”

<input type="text" name="name" onKeypress="return noComma(event);return handler_address(event);">

Because of the return. There’s no coming back after one.

Thanks, Problem Solved.

Do NOT jumble the JavaScript and HTML - that’s the way the web dinosaurs did it and that approach was abandoned by professionals once the web stone age was reached .

If you use event listeners in JavaScript you can attach and detach them as often as you like on each element without interfering with any of the others attached to the same element.