JQuery

Introduction to Jquery Mobile 17Nov, 2015

Introduction to Jquery Mobile

What Is jQuery Mobile? jQuery mobile is an open-source multi platform UI framework to create mobile apps. jQuery mobile is a cross platform framework basically used for mobile apps development using HTML5, CSS3, jQuery and jQuery UI. This framework is not only easy to use it is very robust, maintainable, and well organized. jQuery Mobile is a framework used to create mobile applications. jQuery Mobile is compatible with all desktop browsers and looks same on all mobile devices (Android, iOS and Windows Phone etc). jQuery Mobile is based on HTML5 & CSS3 to make the structure of the page with small amounts of scripting. Purpose of jQuery Mobile? jQuery Mobile helps you to get quick and good results with less…

Color Picker – jQuery plugin 08Jan, 2011

Color Picker – jQuery plugin

About A simple component to select color in the same way you select color in Adobe Photoshop Features Flat mode – as element in page Powerful controls for color selection Easy to customize the look by changing some images Fits into the viewport Examples Flat mode. $(‘#colorpickerHolder’).ColorPicker({flat: true}); Custom skin and using flat mode to display the color picker in a custom widget. Attached to an text field and using callback functions to update the color with field’s value and set the value back in the field by submiting the color. $(‘#colorpickerField1, #colorpickerField2, #colorpickerField3’).ColorPicker({ onSubmit: function(hsb, hex, rgb, el) { $(el).val(hex); $(el).ColorPickerHide(); }, onBeforeShow: function () { $(this).ColorPickerSetColor(this.value); } }) .bind(‘keyup’, function(){ $(this).ColorPickerSetColor(this.value); }); Attached to DOMElement and using callbacks…

Posted in: JQuery