Hi,
I have two javascript functions.
First one is:
function gallery(page)
{
$.scrollTo( '#'+page, 1000, '#' );
}
The next one is like this:
window.onscroll = function ()
{
makeCallv();
}
Here i want to disable window.onscroll function when gallery function is called. And scroll function should be active when function gallery is not called.
Can anyone help me as i am getting this problem for two days. Thanks in advance