Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a new variable for caching the target '.mynewicon' class, e.g., var mynewicon = $('.mynewicon);

  2. Add following code to create the touch events for touchStart, touchEnd and touchCancel.


    No Format
    nopaneltrue
    $( mynewicon).live("touchstart", function () { 
     $(this).addClass("home-icon-active-fake"); 
     }) 
     $( mynewicon).live("touchend", function () { 
     $(this).removeClass("home-icon-active-fake"); 
     }) 
     $( mynewicon).live("touchcancel", function () { 
     $(this).removeClass("home-icon-active-fake"); 
     })



Note
titleNote

Whenever a new button is added which has click and touch effect, add a touch event to make it work on a mobile device.