react-string-replace
react-string-replace copied to clipboard
In safari browser onClick not clickable
reactStringReplace(title, /#(\w+)/g, (match, i) => ( <a key={match + i} data-hash={match} onClick={this.onclick} >#{match} ))
Can you elaborate on this? I'm not sure what bug you're seeing based on the description
Inside reactStringReplace I used anchor tag( <a key={match + i} data-hash={match} onClick={this.onclick} >)but on safari onClick event not triggering. Working on other browser.
Can you post the code? I don't see any anchor tags in the example in your first comment.
This is nothing to do with this library, in safari any link lacking of href its not clickable, if your intention is to visit an internal or external page you don't need the onClick, if you want to use the link as a button you should use a button instead.