display two variables after each other?
$('#listening_text' '#now_playing') obviously isn't the answer but I'm not having much luck moving brackets and apostrophes around either.
What are you trying to do? Those are selectors, not variables
$("#listening_test") In jQuery, this selects the element in your markup (HTML) with id = "listening_test" If you want to change its inner text, you can do: $("#listening_test").text = "Your text here";
Обсуждают сегодня