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(?????);
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(?????);