Hi guys.
I have really big difficulties of doing the following so any help would be appreciated.

Here's my stack
Code: 
$(document).test(1000).mouseover(function(){
alert(1); alert(2);
});

$(document).inbetween();
$(document).test(2000).mouseover(function(){alert(1); alert(2);});
Ok so i want to take the functions(that are bold) with regexr that contain test() function attached. It must work in all major browsers + IE6.

I have the following pattern but can't do it good enough to work.
\$\(.*\)\.test\(\d*\)\.(?:\r|\n|.)+\);(?:\$)+

Thanks

EDIT: Ok i found the proper pattern guys. It's :
\$\(.*\)\.test\(\d*\)\.[^\$]*
Porsche_maniak Reviewed by Porsche_maniak on . JQuery and RegExr Help :| Hi guys. I have really big difficulties of doing the following so any help would be appreciated. Here's my stack $(document).test(1000).mouseover(function(){ alert(1); alert(2); }); $(document).inbetween(); Rating: 5