For example, I have a 3x3 array. In each cell is the letter.
How i can create word using this letters and bring it to the text?
Develop games in your browser. Powerful, performant & highly capable.
For each element > append to text is one way to do it.
Thanks.
One more question.
How can i copy text to clipboard with all of newlines? Is there any plugin for it?
I tried to make it through the edit box but the problem is that there is the entire text is written in a 1 line.
to access the clipboard in javascript is a pain. I think it's doable in internet exporer (with a window.clipboardData.setData("Text", yourText); ) but not in other browser.