I am new to jQuery and I have an html file with this div element.
<div id="test div">Test Text</div>
and this div element.
<div id="dump contents"></div>
In my javascript file, I have this:
var testvariable = $("#test div").text();
$("#dump contents").html(testvariable);
But no matter what I do, nothing happens :(
Any advice? Thanks in advance!