Best HTML5 Tutorial Resources and Websites

Want to build cool stuff using HTML5 ? but dont know how to do it. So, Basically your are searching tutorial websites and resources for HTML5.
Let me suggest you some great and cool websites and resources where you can learn HTML5 from scratch to Advance.

What is HTML5 ? (Basic)

HTML5 is the newest hyper text markup language for web by W3C (World Wide Web Consortium). It was first publicly introduced in 2008. Still HTML5 is under development. it is iteration of HTML after version 4.01.

It works with CSS3.

What you can do with HTML5  ?

  1. Animation, Images, Scripting Drawing(2D and 3D graphics) using Canvas
  2. more semantically accurate documents
  3. Audio and Video support
  4. web/browser database

Best SEO WordPress plugins for New Website

WordPress and all its features have caught everyone’s eye. Especially, the plugins. Well, there are millions of plugins out there but there are a few ones that really keep your website going! When playing with WordPress, it is mouth-watering! It is down right-tempting to avoid dealing with plug-ins, everything just goes slo-mo with them! They seem so complex! Some aren’t even free, but sometimes you are just left stranded when it comes to SEO. Somewhere you just can’t do without them. Here are some of the Crème de la crème plug-ins that make life easier on WordPress:

Read more…

Vote Up and Vote Down using Codeigniter PHP, jQuery (Voting System)

There are many forums, Ecommerce sites and Q/A sites have built vote and vote down (Voting) system for their Products, Post or Answers .

You will find many tutorials on web for Vote and Vote Down using PHP or other languages. Today Lets discuss step by step on creating Vote and Vote down system using codeigniter(PHP), MySQL, jQuery.

Read more…

Split a string at every n-th position

Introduction:
Why need to splitting string at every nth position? If you have some number or string which are very long without blank space (e.g. Provident Fund No., Bank Account No., Order No, Transaction No etc…) and you will have limited column space to show entire number in tabular column at that time you will use this simple but most useful split with regex function.

Screen:
Before Split

Usage Example:
This function will require three parameter as following:

 //str : which are string or number that you want to split
 //limit: it require integer value, it will split text or number at every specified position.
 //replace: it will allows you to separate each text or number with new character (e.g. \n, <br/>).
 function SplitText(str, limit, replace) {
 //Create dynamic regex for splitting string
 var reg = new RegExp("(.{1," + limit + "})", "g");
 //Splitting string using regex
 var text = String(str).split(reg);
 //Filtering empty or null items from array
 //Note: Javascript array filter() method creates a new array with all elements that pass the test implemented by the provided function.
 text = text.filter(function (e) { return e });
 //Join each items with replace with new character (e.g. \n, <br/>)
 text = text.join(replace);
 return text;
 }

Call Function:

var orderNo = SplitText(order_number, 4, '<br/>');

Final Output:
After Splitting No

This will very useful in mobile devices which has very limited screen size.

  • Get In Touch