[jQuery] Re: Prevent DDLB Mouse Wheel Selection

2009-03-17 Thread Shredder36
Ok, i found the mousewheel plugin and it solved my problem. Nevermind... Sam $(this).mousewheel(function(){return false;}); On Mar 17, 2:19 pm, Shredder36 wrote: > Hello, > > I want to prevent our users from accidently changing the value in a > select element using the mou

[jQuery] Prevent DDLB Mouse Wheel Selection

2009-03-17 Thread Shredder36
Hello, I want to prevent our users from accidently changing the value in a select element using the mouse wheel. I tried various permutations on the following theme but have been unable to get anything to work. Any suggestion would be greatly appreciated. This application is for a captive audi

[jQuery] Re: ID's start with #

2009-02-10 Thread Shredder36
the double backslashes does work. thank you. sam On Feb 10, 1:04 pm, James wrote: > Try double backslash escaping the second #-sign: > > $("#\\#SAM1").text("hello"); > > On Feb 10, 7:36 am, Shredder36 wrote: > > > > > Hello, > > >

[jQuery] Re: ID's start with #

2009-02-10 Thread Shredder36
> $("#\\#SAM1").val("hello"); > > On Feb 10, 9:04 am, James wrote: > > > > > Try double backslash escaping the second #-sign: > > > $("#\\#SAM1").text("hello"); > > > On Feb 10, 7:36 am, Shredder36 wrote: >

[jQuery] Re: ID's start with #

2009-02-10 Thread Shredder36
quot;#\\#SAM1").val("hello"); > > > On Feb 10, 9:04 am, James wrote: > > > > Try double backslash escaping the second #-sign: > > > > $("#\\#SAM1").text("hello"); > > > > On Feb 10, 7:36 am, Shredder36 wrote: >

[jQuery] ID's start with #

2009-02-10 Thread Shredder36
Hello, How do I find an element who's id starts with #? For example: the following does not seem to work $("##SAM1").text("hello"); Any help is greatly appreciated. thank you, Sam