Skip to content Skip to sidebar Skip to footer

React Onclick Not Firing On Ie 11, Safari And Ff On Pc

I have the following component: class FirstName extends React.Component { constructor(props) { super(props); this.state = { submitted: false,

Solution 1:

try to remove onBlur() if you clean elements with onClick()after blur effect !

Solution 2:

ok so the issue was not with onClick but with axios not being fully supported on IE 11. So my solution was this: https://babeljs.io/docs/usage/polyfill/

Post a Comment for "React Onclick Not Firing On Ie 11, Safari And Ff On Pc"