replace
UK[rɪˈpleɪs] US[rɪˈples]
vt. Replace; replace; put... back in place; (use...) replace
all
English[ɔ:l] American[ɔl]
adj. All; all; various; extreme, as much as possible
pron.all;everything;everyone,everything;all circumstances
adv.entirely;completely;every;very
n.all;[ Often used as A-]whole; [often used with my, your, his, her, etc.] everything that (someone) has
jquery replaceAll() method syntax
Function: replaceAll() method replaces the selected elements with the specified HTML content or elements. replaceAll() has the same effect as replaceWith(). The differences are in syntax: content and selector placement, and replaceWith() being able to use functions for replacement.
Syntax: $(content).replaceAll(selector)
## Parameters:
Description | |
Required. Specifies the content to replace the selected element. Possible values: HTML code - e.g. ("<div></div>") New element - e.g. (document.createElement("div")) Existing element - e.g. ($(".div1")) Existing elements will not be moved, only copied and wrapped around the selected element. | |
Required. Specifies the element to be replaced. |