Tagged Questions
4
votes
3answers
913 views
How can I invert a regular expression in JavaScript?
I have a string A and want to test if another string B is not part of it. This is a very
simple regex whose result can be inverted afterwards.
I could do:
/foobar/.test('foobar@bar.de')
and ...
0
votes
4answers
57 views
Javascript: inverting a boolean does not work
i am trying to invert a boolean value (toggle);
var current_state=$.cookie('state');
if(current_state==null) {
current_state=false;
}
console.log(current_state);
current_state=(!current_state);
...
0
votes
1answer
306 views
Invert Image Color Onmouseover
I want to invert the colors of an image when the mouse rolls over the image using Javascript. I do not want to use Image Rollover as it will increase the load time.
I am building my first ...