0

I am working with a website which needs fully responsive for the devices. I am testing it iPhone 5. Mouse wheel scroll and buttons clicks is not working when I am testing with iPhone. But everything is working fine when I am testing with online iPhone simulators.

N. B. Actually, I can't post code here. Because, I can't guess what is the problem there.

Khan
  • 331
  • 1
  • 2
  • 8
  • I-Phones have their own events. Are you listening on them? E.g. they have no click event AFAIK. – ben Jul 20 '14 at 17:51
  • @user2820379, I see!! Can you give me some events listening tuts for iPhone? – Khan Jul 20 '14 at 17:55

2 Answers2

0

Your website may be preventing the default action for touch events which would prevent scrolling. Although I can not say more without seeing the actual code, here is a possible solution to your dilemma: How to unbind a listener that is calling event.preventDefault() (using jQuery)?. Essentially you need to restore the default actions that occur after touching the screen.

Community
  • 1
  • 1
user50213
  • 1
  • 1