Results 1 to 2 of 2

Thread: Lightbox2, Popup window moves, when use keyboard arrow keys.

  1. #1
    Join Date
    Dec 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Lightbox2, Popup window moves, when use keyboard arrow keys.

    If I use keyboard right or left arrow keys to see next or previous images,
    pop up window will move about 17px left or right side (other way of the keyboard arrow keys).
    You can check with lightbox2 demo page.
    http://lokeshdhakar.com/projects/lightbox2/
    I want to fix this problem, but I have no clue how to fix this.
    Does anyone know how to fix this problem?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Not here on that page under Win 7 with IE, Firefox, Opera or Chrome.

    If I had to guess though, I'd say the screen or window was too narrow, like on a phone or any device if the browser is narrow.

    If that's it, this will fix it:

    Code:
    <script type="text/javascript">
    $(document).keydown(function(e){
    		if(Math.abs(e.keyCode - 38) === 1){
    			e.preventDefault();
    		}
    	});
    </script>
    Put it after the external script tag for jQuery.

    What browser and OS are you using?
    Last edited by jscheuer1; 12-27-2013 at 07:03 PM. Reason: guessed at a solution
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Similar Threads

  1. Using the up and down arrow keys to select a table row
    By jason_kelly in forum JavaScript
    Replies: 12
    Last Post: 01-31-2016, 05:45 PM
  2. Replies: 4
    Last Post: 04-28-2013, 04:01 PM
  3. Replies: 2
    Last Post: 01-22-2013, 02:58 PM
  4. Need help activating slideshow navigation with arrow keys
    By MamaGeek in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 11-25-2012, 04:47 PM
  5. Replies: 0
    Last Post: 12-23-2010, 01:59 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •