Sometimes we faced the problem on scrolling the content on the page and go to the bottom of the page and feel we need to go on top of the page.

For that we need to scroll the page again which is irritating. If there would be any option to click on which we can jump to top of the page easily seems good.

Read More

Opening fancybox on page load is very simple. just call below given code in document ready eg.

$(document).ready(function () {
        $.fancybox({
            'width': '80%',
            'height': '80%',
            'autoScale': true,
            'transitionIn': 'fade',
            'transitionOut': 'fade',
            'type': 'iframe',
            'href': 'http://www.example.com'
        });
});

Read More

[ Page 10 of 10 ]