What is Join() in jquery? for example:
var newText = $("p").text().split(" ").join("</span> <span>");
|
What is Join() in jquery? for example:
|
|||
|
|
|
That's not a jQuery function - it's the regular Array.join function. It converts an array to a string, putting the argument between each element. |
|||
|
|
|
You would probably use your example like this
This will put span tags around all the words in you paragraphs, turning
into
I do not know what the practical use of this could be. |
|||||
|
|
The practical use of this construct? It is a javascript replaceAll() on strings.
will output:
|
|||
|
|
|
join is not a jQuery function .Its a javascript function. The join() method joins the elements of an array into a string, and returns the string.The elements will be separated by a specified separator. The default separator is comma (,). |
|||
|
|
|
A practical example using a jQuery example might be
I do that in a calendar tool that I am using, this way on the page load, I can do certain things with today's date. |
|||
|
|