Jump to content

onclick event in html string


vamshi_26

Recommended Posts

I have a use case where my content editable div accepts only string inside it but it shows the html elements as they are supposed to be shown on website but as per the configurations mentioned in  package. They have mentioned the attributes but not click events. Now, if I have string as `some text here <button onclick=someFunction()>button</button>`. Here someFunction is directly being called without triggering button because I think it is in string. How can I call `someFunction()` only when button is clicked.

Link to comment
Share on other sites

  • 8 months later...
  • 2 months later...

Try using this way

<button onclick = "someFunction()">Button</button>

 

Else you can even try :

 

<button class="someFunction">button</button>

<script>
$(".someFunction").click(function(){
    alert("This is a function");
  });
</script>
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...