Don’t know how to phrase this question but I need to modify the child of node :
<a id="page_number">1 / 1</a>
I’m using JS and JQuery. Up so far I get the node like this:
$("#page_number")[0]
Can I get this without have to use the square brackets (getElementById?). Then how to I modify the value ‘1 / 1’?
1 Answer