i need to disable the arrow keys in a flowplayer.org scrollable i have a text input that i cant move between the letters due to the scroller moving when arrow keys pressed, i dont care to disable the scroller keys permanently.

thanks

link to scrollable

link to forum to disable keys

link|improve this question

61% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to assign your scrollable instance to a variable:

var yourScrollable = $(".yourScrollableClass").eq(1).data("scrollable");

And then disable the keyboard navigation (in your case, on focus on a text input):

$('.inputClass').focus(function() { yourScrollable.getConf().keyboard=false; });

Then you can set this back to true on blur of your text input.

$('.inputClass').blur(function() { yourScrollable.getConf().keyboard=true; });
link|improve this answer
this is my actual code where do i place your code? $(document).ready(function() { $("#mySelect").change(function(){ $("#myDiv").load( $(this).val(), function(){ $(this).find("div.scrollable").scrollable(); } ); }); }); thanks! – loo May 18 '10 at 1:57
1  
Just before the last }); should work. Replace ".yourScrollableClass" with ".scrollable" and '.inputClass' with whatever the class of the input in question is, or 'input' for all inputs (or 'textarea' if that). Good luck! – mVChr May 18 '10 at 4:28
thanks for getting back! im getting this error yourScrollable is undefined $('input').focus(function() { yourScrollable.getConf().keyboard=false; }); this is my code $(document).ready(function() { $("#mySelect").change(function(){ $("#myDiv").load( $(this).val(), function(){ $(this).find("div.scrollable").scrollable(); } ); }); var yourScrollable = $(".scrollable").eq(1).data("scrollable"); $('input').focus(function() { yourScrollable.getConf().keyboard=false; }); $('input').blur(function() { yourScrollable.getConf().keyboard=true; }); }); – loo May 18 '10 at 4:37
You might need to add a test for when pages don't contain a scrollable element. To test if yourScrollable exists, you can change the interior of the focus and blur functions to: if (yourScrollable.length) { yourScrollable.getConf().keyboard=false; } Good luck again! – mVChr May 18 '10 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.