Hello!
I am trying to pass the content of the variable "x" to use in a javascript with stringbuilder.
I need to pass the content of variable "x"
How I can do? Any help?
I am trying to pass the content of the variable "x" to use in a javascript with stringbuilder.
Code:
Dim x As String
x="some text to put inside"
javascript2.Initialize
javascript2.Append("var toInsert = document.createElement('div');")
javascript2=javascript2.Append("toInsert.innerHTML =`x`;")
WebView1.ExecuteJavascript(javascript2)
I need to pass the content of variable "x"
How I can do? Any help?