Posts

Showing posts from 2015
Most Popular JavaScript Libraries and Frameworks  Today I came up with the list of most popular JavaScript Libraries. We all know that these libraries are very helpful for quick development experience & these libraries take out lots of painful aspects in terms of quick development of any project.  While looking for the below list you may think for a while that which one is the best JavaScript library for my project.Now i may not go in details of which one to used and which one not but s electing the library mostly depends upon your project requirement. Here is the list of most popular JavaScript Libraries :  jQuery Underscore Backbone Angular JS Ember React  Polymer Knockout dojo

What is new in jQuery 2.0

What is new in jQuery 2.0? The hugely popular JavaScript library was released jQuery 2.0 as their latest version of jQuery and it is a great news for developers and designers. Before rushing to use this popular library hold on for a while to know what's new jQuery 2.0.  Consider the below major highlights : 1. Bye bye to IE 6/7/8 that means no support and support for IE9 and IE10 with the use of X-UA-Compatible tag 2. JQuery 2.0 Slimmer then before The jQuery 2.0 file is 12 percent smaller then the older version. Now the jQuery file size is small the reason is removed the supporting code of IE 6/7/8 browsers. For your project if your not planning any support for IE 6/7/8 browsers you can go for latest version of jQuery. As you know that if you need to support IE8 and below version then you need to stick with jQuery 1.9.x. version.  Benefit : smaller the file size will always loads faster then before. 3. Custom builds makes again jQuery smaller the file size...
Change the font color of a disabled SELECT element in IE-10 and above browsers with the ::ms-value CSS pseudo-element Styling the SELECT element is not a big deal. Styling the disabled SELECT elements is pain point when developing web applications or a app.  Now web rendering engines added hooks with pseudo-elements to give developers some control on user interface. Before implementing the hooks of pseudo-element keep in mind that this pseudo-element is rendering engine specific that is IE specific. The ::ms-value pseudo-element was drafted for CSS Selectors Level 3 and applies one or more styles to the content of a text or password input control, or a select control. Example : The following example sets the text color of select element to black: select[disabled='disabled']::-ms-value  {     background-color:#FFF;     color: #000; //Any Color } As we know that the ::-ms-value pseudo-element supports only IE, Said that...