Fetch / embed videos from url using PHP and Jquery

Please check my new updated post – Facebook Style embed videos from url – http://w3lessons.info/2013/05/25/facebook-style-youtube-video-vimeo-video-soundcloud-audio-url-expander-with-jquery-php/ In our daily life web developers are facing problem like how to embed videos from url. Here I am going to share How to fetch videos from major sites like youtube, vimeo, dailymotion, yahoom google , … Read more

Jquery Vs Mootools – Which one is better?

The Stats jQuery Core MooTools Core Library Size 55.9K 64.3K Features License MIT & GPL MIT DOM Utilites yes yes Animation yes yes Event Handling yes yes CSS3 Selectors yes (a subset) yes (a subset) Ajax yes yes Native Extensions (excluding Element) about a dozen for Array, Object, and String about six … Read more

jQuery.noConflict()

Many JavaScript libraries use $ as a function or variable name, just as jQuery does. In jQuery’s case, $ is just an alias for jQuery, so all functionality is available without using $. If we need to use another JavaScript library alongside jQuery, we can return control of $ back to the other library with a call to $.noConflict() … Read more

HTML5 and Jquery based Audio/Music Players

HTML5 and jQuery have taken over from flash lots of web elements. However video and audio player is one web element that many people still prefer to use flash based players. Sine some mobile platforms don’t come with flash support by default so these players become useless when browsing website on mobile … Read more

Simple tips to make your JQuery Faster

1) Wherever possible, use an ID selector This one allow is probably the most important change I’ve done to the way I code jQuery. It’s pretty easy and well, convenient, to select elements based on their class: 1 $(‘div.submitbutton’); However, doing so means that jQuery will have to traverse the … Read more

5 new techniques every web developer should know

Web developers always have to update their knowledges and learn new technologies if they want to stay tuned with today’s coding. Today, I’m going to show you 5 recent web development techniques that you should definitely learn, or improve if you already know them. CSS3 media queries With the rise … Read more

One Page Sliding Portfolio Site Using jQuery

In this tutorial, I am gonna tell how to create an one page portfolio site using Jquery. One page sites are usually a great way to show your prospective clients how good you are at what you do. This one is no exception. Demo Url – https://speckyboy.com/how-to-build-a-sliding-one-page-portfolio-with-jquery/ Download Link – https://speckyboy.com/how-to-build-a-sliding-one-page-portfolio-with-jquery/   … Read more