Transition Delay Property in CSS and Javascript

| By Webner

What is Transition Delay? Transition delay specifies the amount of time for the change to take place in css properties of DOM elements. Transition Delay value is defined in seconds (s) or milliseconds(ms). How to implement Transition Delay in CSS?

Localhost WordPress site asking for FTP credentials on installing new plugin

| By Webner

In one of the WordPress projects we are working on, whenever we tried to install a new plugin in locally installed WordPress, it asked for FTP credentials: When we tried to install a new theme then also it asked for

What is in Bootstrap apart from grid system? Why it has a Javascript file also?

| By Webner

Bootstrap has lots of other things apart from grid system such as: 1. Glyphicons: Bootstrap has inbuilt icons which we can use by icon’s class name. For Example: “glyphicon-search” will create search icon without using any external image. So Bootstrap has

Salesforce | How to prevent double click on Apex button

| By Webner

How to avoid double click on Apex button in Salesforce (after click disable button and enable again once action is complete)? This is the code having the solution (explained below): <apex:actionStatus id=”saveStatus”> <apex:facet name=”stop”> <apex:commandButton value=”Go” action=”{!go}” status=”saveStatus” rerender=”saveParentBlock” />