Basically I am updating an old web application compatible with multiple browsers. In the whole place that the original programmers used -
document.all.element
As I understand it, “.all” is just IE introduced in IE 4. The “.getElementById” function was introduced in IE 5. I want to change the instances of the above statement to
document.getElementById("element")
How can I generate this regular expression, in particular, using the Find and Replace dialog of Visual Studio?
source
share