how can i reverse a query like this.
the url should match ".*window\.open.*"
I would have a scenario like...
the url should not match ".*window\.open.*"
How can i reverse the regexp?
Tried something like
".*[^window\.open].*"
"[^(window\.open)].*"
"[^window\.open].*"
Nothing works ;(