Skip to content
Advertisement

How to select span within a dynamically generated button?

Problem: How to update the innerHtml of a span within a dynamically generated button using only JavaScript?

I’m building a ‘like’ feature (think social media) where users can like/unlike posts, but I can’t figure out how to select the value of the specific span the user clicks on. I’ve been only able to find jQuery solutions using .find('span')

JavaScript
JavaScript

Expected outcome: User clicks the button to increment the span of only that button by 1.

Advertisement

Answer

e.target.children will give you an array of all the children of button and the 0th index of the array should be your span element which you can then edit normally using the innerHTML method.

In your case,

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement