What the difference between text() and html() functions in jQuery ?
$(\"#div\").html(\'Linkhello\
Basically, $("#div").html uses element.innerHTML to set contents, and $("#div").text (probably) uses element.textContent.
http://docs.jquery.com/Attributes/html:
Set the html contents of every matched element
http://docs.jquery.com/Attributes/text:
Similar to html(), but escapes HTML (replace "<" and ">" with their HTML
entities).