event – POFTUT

JavaScript onClick() Event Tutorial with Examples

JavaScript onClick() Event Tutorial with Examples

onClick() Event is very popular in JavaScript. onClick event is simply used to fire an action, execute code or call a function when the specified HTML element is clicked. This HTML element is generally a button but it can be also ahead, iframe, label element, etc. onClick() event is supported by all major browsers like … Read more

Html Text Input Allow Only Numeric Input

Applications expecting numeric values for the input is generally a pain for developers. Because we have to check given values whether they are number or alphabet. We have some text input element for html. We want to get the number of the person. How can we achieve that easily? Pure JavaScript By using JavaScript events … Read more