Quantcast
Channel: Javascript – Digital Zoom Studio
Browsing latest articles
Browse All 15 View Live

Image may be NSFW.
Clik here to view.

Custom Google Analytics Events in WordPress

Today we are going to learn how to integrate custom Google Analytics events in WordPress. For example I will setup a component I have here. Mick Jagger – RevengeBuy now! All we need is to setup the...

View Article


Format Time Functions xx:xx in PHP and Javascript

Today I am going to show you format time from this format x ( seconds ) to xx:xx . And the reverse. Javascript function from 90 to 1:30 function formatTime(arg) { //formats the time var s =...

View Article


Match javascript lines with comments on them

The regex should be \/\/ .*$ You can use this in IDE such as PHPSTORM

View Article

Match lines with comments in them

The regex should be (\/\/).*$ If you have a way to mark your useful comments. Like I have — to mark them, you can use it in the negative lookahead ( to filter only the unuseful comment ) (\/\/)(?! –)...

View Article

How to checkout / submit wordpress plugin in Mac OS X Terminal

First you need to enter your directory and to checkout: svn co https://plugins.svn.wordpress.org/your-plugin-name Add new files: svn add trunk/* Then you’ll need to svn ci -m 'description'        

View Article


CSS3 Free Online Tooltip Generator

Try it now – here

View Article

Convert php arguments to documentation html

Let us say you have a documented php function with arguments in this form 'display_type' => 'list',// -- "list" or "grid" or "grid-2" or "scroller" or "map" or "horizontal" 'grid_skin' =>...

View Article

How to force resize every 3 seconds javascript

Go to the text editor ( where you can input html content ) and input: <script>setInterval(function(){ if(window.jQuery){ jQuery(window).trigger('resize'); } },3000);</script>

View Article


React without webpack

create .babelrc on top of the partition D:\

View Article


Image may be NSFW.
Clik here to view.

Redux Javascript update state with multiple nested levels – immutable

The only solution I found is having this in the return statement of the reducer return { ...state ,[topic_id]:{ ...state[topic_id] ,matches:[ ...state[topic_id].matches ,subticket ] } } ; If there are...

View Article
Browsing latest articles
Browse All 15 View Live