Posted on November 24th, 2015 by Sandeep Agrawal
Since normal scrollbar implemented for browser does not work in iPad, we can implement it using JScollPane which is a jQuery plugin. The files can be downloded from the following links: JS files: (www.kelvinluck.com/assets/jquery/jScrollPane/scripts/) jScrollPane.js(for scrolling) jquery.mousewheel.js(scrolling with mouse wheel) jquery-1.3.2.min.js(jquery plugin) CSS file: (www.kelvinluck.com/assets/jquery/jScrollPane/styles/) jScrollPane.css(for scroll images) Scroll Images: (www.kelvinluck.com/assets/jquery/jScrollPane/images/) windows_arrow_down.gif windows_arrow_up.gif windows_drag_bottom.gif windows_drag_middle.gif windows_drag_top.gif windows_track.gif […]
Posted on November 23rd, 2015 by Elishree Dey
For web applications we are at times required to get the current vertical window scroll bar position. One of the common way to detect it is by using Javascript with out any external plugin function. We can use below javascript function where we can get the window scroll bar position. function getScrollXY() { var x […]
Posted on November 23rd, 2015 by Chittaranjan Pattnaik
In the current situation it’s a challenging task for the web developers to build websites which is compatible with different and popular browsers available (like IE, Firefox, Mozilla, Safari, Google Crome, Opera etc…) Different browsers have their different ways of serving the web page content and may create problem while using some CSS properties to […]