Capture Y-Axis Location
I need to capture the Y-axis location when a user taps/clicks
I done this before using JQuery on a website, but it does not seem to be working within Tiggzi
In a project javascript file, I have the code:
Tiggr('button_show_more_items').bind('vclick',function(e){
alert(e.pageY);
});
However, the page hangs whenever it is loaded when this code is present.
I've tried moving it to the page's DeviceReady and Load events to no avail as well.
Please advise.