Try
$("#link1").text()
to access the text inside your element. The # indicates you’re searching by id. You aren’t looking for a child element, so you don’t need children(). Instead you want to access the text inside the element your jQuery function returns.