What is the equivalent of document.createTextNode(' ') in jQuery

Viewed 32142

What can I use in jquery instead of document.createTextNode(' ') js line.

I'm trying to do sth like this :

js : divButtons.appendChild(document.createTextNode(' '));

jquery : $("#divButtons").append(?????);

4 Answers
Related