Posts

Monthly Blogging Report: May 2012

Image
“Time Teaches You Many Things”. May 2012 was not very good month for me. Since 2009 I was using custom developed blogging system on shared server hosting and the server always falling in issues that were causing huge downtime for my blog. Since long time I was thinking to move my blog to Blogger (Google’s BlogSpot) and finally I did this last month. I moved my all posts (about 435 posts) to Blogger. My blog traffic continuously going downward since May 2012 as I was getting maximum hits from search engines so it will take couple of months to get the actual traffic. At the end of May 2012 things were going good and of course now I’m writing new stuffs again. In May 2012 I could write only 2 articles. Please find the details of the same below: Attribute Starts with Selector in jQuery Using JavaScript to Control the Playback of Audio Tag in HTML5 I hope you enjoyed the coding with me. If you have comments, feedbacks please post here. Happy Coding !!

Getting started with jQuery UI

Image
In this post you will learn how to get started with jQuery UI. Believe me, jQuery UI is really very easy to learn and it provides abstractions for low-level interaction and animation, advanced effects and high-level, theme-able widgets, built on top of the jQuery JavaScript Library which you can use to build highly interactive web applications. The whole jQuery UI categorized into three groups that is core, interactions, widgets and effects. In this post I am going show you how to setup a demo page for jQuery UI. You just need to follow the steps given below. Step 1 (Downloading UI Library) At very first you need to download the jQuery UI library from here http://jqueryui.com/download . You might get confused on this download page because there is various checkboxes to select. Look if you want to download library that contains core elements of UI then deselect all components and select only UI Core there. Similarly, if you want library that contains interaction element

Using jQuery Plugins

Image
In this post you will learn the basic terminology of jQuery Plugins, where to get them and even how to use them on the web page. The main emphasis of this post will be how to incorporate them into our web page. I will keep my ideas simple so that any fresher can also get into Plugins use. What is jQuery Plugins? We all know jQuery is a fast and concise JavaScript Libarary that simplifies HTML document traversing, event handling, animating and also Ajax interactions for rapid web developments. JQuery is specially designed to change the way that we write JavaScript. Now to understand jQuery Plugin, you need to define the term 'Plugin'. Plugin is actually set of software components and sometimes it may be very small in size and it adds specific abilities to a larger software application. Some plugins supports customizing functionality that let us get the full benefits and jQuery Plugins has this functionality. The day by day growing jQuery community has created th

Download Visual Studio 2012 RC

Image
Visual Studio 2012 RC  is made available along with  .NET framework 4.5 RC  and are available for download now. Microsoft released both products in parallel to Windows 8 Release Preview and Windows Server 2012 RC. Visual Studio 2012 is fully Metro now and so after the Visual Studio 11 beta release this is major release. Changes so far made after the beta release can be seen from its UI easily and Microsoft also changed the naming of so called  Visual Studio 11  to  Visual Studio 2012 . Even logo of Visual Studio 2012 is changed and made as per Metro design principles. Have a look of the logo: More Story

Using JavaScript to Control the Playback of Audio Tag in HTML5

Image
Download In this post you will learn how to control the audio playback of <audio> tag in HTML5 by using JavaScript logics. HTML5 defines a new element which specifies a standard way to embed an audio file on a web page using the <audio> element. To play an audio file in HTML5, this is all you need:         < audio controls ="controls">             < source src ="http://domain.com/inanhq.mp3" type ="audio/mp3" />             < source src =" http://domain.com/inanhq.mp3" type ="audio/mpeg" />           Your browser does not support the audio tag.         </ audio > Above <audio> element adds audio controls like play, pause and volume automatically on the web page. Here is the output. We can use text content between the <audio> and </audio> tags for browsers that do not support the <audio> element. The <audio> element allows m

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System