how to remove zoom icon from jQuery FancyZoom plugin

Jquery FancyZoom is a pretty nice plugin for zooming images, but I needed to remove the blue icon from the view, while the image is hovered by a pointer. I added new default option: //Default Options $.fn.fancyzoom.defaultsOptions = { overlayColor: ‘#000’, overlay: 0.6, imagezindex:100, showoverlay:true, Speed:400, shadow:true, shadowOpts:{ color: “#000”, offset: 4, opacity: 0.2 },… Continue reading how to remove zoom icon from jQuery FancyZoom plugin

JetBrains PHPStorm and WebStorm review

First time I tried to write something in PHP was more than 5 years ago. And since that time I was looking for a better solution how to make my work easier and spend less time on code writing. I started with Vim and every time I tried something different, I returned to Vim for… Continue reading JetBrains PHPStorm and WebStorm review

Charts and graphs with jplot, jQuery and php

For rendering charts in one of my projects, I started using jplot library. Usage is pretty simple, but I needed some specifics in implementation. First, add the following lines to HEAD section: In my case, I used also date rendering and some more features, provided by jplot. Then I added the following code to my… Continue reading Charts and graphs with jplot, jQuery and php

jQueryUI progressbar implementation

In one of my projects, I needed to implement progressbar. I took jQueryUI library, as it provides pretty good bunch of solutions to make your UI more interactive for a user. Progressbar implementation is described here. For my task, I used the following html: reload balance Link will trigger DB operation and Progressbar. Progressbar will… Continue reading jQueryUI progressbar implementation