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
ARCHIVE

Posted on February 11 2014 / in WordPress Plugins / 3 comments
DZS Video Portal lets you convert your WordPress site to a video portal site like YouTube, Vimeo or 9gag.tv by offering Likes, Playlists, Upload and even an optional SignIn functionality. easy install – purchase, download the zip, access your WordPress Admin Menu > Plugins > Add New > Upload zip and that’s all! synergy with

Posted on November 19 2013 / in WordPress Plugins / 6 comments
Want a nifty, cutting-edge, retina-ready, responsive html5 audio player for your site ? ZoomSounds is the perfect candidate. With four skins to fit every brand, only one format required to function, ZoomSounds is the perfect choice for an audio player. Audio Player Features HTML5 technology – this gallery uses the latest html5 tehniques to deliver
First, it’s recommended to create a child theme for this so you don’t lose your changes on theme update. You need to modify the css to support fullwidth like so .my-full-size { margin-left: auto !important; margin-right: auto !important; height: auto; padding-right: 1em !important; } Then duplicate page.php and create a new full-width-page.php with these contents:
Hello! I have a iframe shortcode generator inside of wordpress and I needed to get the wp uploader to insert media on it. Wheter you need it on a external page / frontend / whatever, this is the tutorial for you. First we need to load WordPress in our file. If it’s the frontend you

Posted on September 2 2013 / in Javascript Components / 3 comments
ZoomBox Lightbox Intro – top ZoomBox 2 – The Photographer’s Lightbox ! What makes ZoomBox unique to the other lightbox scripts ? In short – quality, user-friendliness, design and social media connectivity. Take a look at the demos and be convinced. ZoomBox Lightbox Features HTML5 technology – this gallery uses the latest html5 tehniques (
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){