-
Notifications
You must be signed in to change notification settings - Fork 37
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
How to replace Node innerHTML and save it to new string? #22
Comments
No, once the document is created, it cannot be changed anymore. The you can use the transform function in xquery to create a new document (needs xquery_json in uses)
|
@benibela how about add a |
I am used Winform in C#, there is a libaray called Html Agility Pack, It is really convient and easy to use for parse a web page |
I do not want people to believe they can change individual nodes. Then they might try multithreading, change different nodes in different threads and the program fails because you can only modify the entire document. Every node has an index, first node might be 10, second node 20, third node 33, ... If you add a node, it needs to update all the node indices afterwards. |
Is it able to replace node innerHTML, like this:
and what is the proper way to update
everydayHtmlString
variable to the latest?The text was updated successfully, but these errors were encountered: