Thursday, June 22, 2017

Custom styles scrollbar using jquery

If we want to have a custom scrollbar style in html page, there are several options available, but we have to keep in mind the browser compatibility since each browser supports different features.


  1. There are some browsers which support webkit property on css styles, scrollbars in these browsers can be styled relatively easily. But IE, firefox and opera are not compatible with webkit css styles
  2. There is a fallback jquery plugin available for not webkit browsers described at http://jscrollpane.kelvinluck.com/ which is very nice.

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...