Skip to content
Advertisement

Tag: velocity

How to include JavaScript file inside a Velocity template?

I have a JS file having contents: function rejectIfNotSuccess(response) {} usernameChanged(event) {} for example, and I want to include this file in my velocity template in order to do things the same way we do in an HTML file. For example, I want to call a function defined in this JS file in velocity using <input type=”text” id=”username” onInput=”javascript:usernameChanged(event)” />

Advertisement