-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add method Elements.before(Node node) #953
Comments
Hi -- can you describe your use case or show an example? Just want to make sure I understand the request completely. |
Hello, I found an element an the webpage. (eg I need to output my element to HTML to add it before each selected div. Regards, |
I am trying to do like |
Should do this for before, after, prepend, append, to match the Elements string methods. |
Hello,
We can made
Element.before(Node node)
,Element.before(String html)
andElements.before(String html)
.Is it possible to add
Elements.before(Node node)
?Actually, I need to do
myElements.before(myElement.outerHtml())
which isn't really pretty...Regards,
Anael
The text was updated successfully, but these errors were encountered: