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 = Math.round(arg); var m = 0; if (s > 0) { while (s > 59) { m++; s -=
ARCHIVE
Tips
Parsing shortcodes such as this one [row] [col size="6"]...[/col] [col size="6"] // second col [row] [col size="6"]...[/col] // second col end, wrong [col size="6"]...[/col] [/row] [/col] [/row] can be tricky because the second [col] is ended by the one nested in the second, nested [row] so I have found that the best solution is to
Posted on February 28 2014 / in Tips / 4 comments
If you have a project and have to read .srt format in javascript – this is the post for you. This is the regular expression that matches the format in .srt files. ([0-9]+(?:.[0-9]*)?)[sS]*?(.*-->.*)[sS]*?(w+.*)[n|r] test here – http://regexr.com?38d0s
add_query_arg function add_query_arg(purl, key,value){ key = escape(key); value = escape(value); var s = purl; var pair = key+"="+value; var r = new RegExp("(&|\?)"+key+"=[^&]*"); s = s.replace(r,"$1"+pair); //console.log(s, pair); if(s.indexOf(key + '=')>-1){ }else{ if(s.indexOf('?')>-1){ s+='&'+pair; }else{ s+='?'+pair; } } //if(!RegExp.$1) {s += (s.length>0 ? '&' : '?') + kvp;}; return s; } get_query_arg function get_query_arg(purl, key){

First I’d like to say that I left out IE6 because it’s a stupid browser and does not matter to me. Recently I have been working on a html5 audio player. Obviously I need to provide a fallback for IE8 browser. But I did not want to redesign the whole player again in flash so

So recently I had to make ajax requests that pull in a piece of page with some scripting inside. The context does not matter much, what matters is the script executed fine on my localhost but not as a WordPress installation in a WP blog. After some head banging turns out that in my localhost

Posted on March 21 2013 / in Tips / 3 comments
part 1 – http://digitalzoomstudio.net/2011/02/23/problems-i-had-as-a-wordpress-developer-with-badly-coded-plugins/ Or THEMES. As you may know, I sell premium WordPress scripts here – http://codecanyon.net/user/ZoomIt/portfolio?ref=ZoomIt . As authors, we are not required to offer support, but I myself consider it a important part of the deal and I do offer it best as I can. 80% of support requests are related to plugin compatibilities (
Recent Comments