[How To] Change main-menu icon in Lucid (Ubuntu 10.04)

All the icons in Ubuntu are inside the theme which is in use. Now to change applications icon, which you can see on the left most side of Applications.The following steps should followed:- 1.Open terminal and type  gksudo nautilus. 2.Copy this location into your new window:- /usr/share/icons/ 3.Choose the icon type which is in current … Continue reading “[How To] Change main-menu icon in Lucid (Ubuntu 10.04)”

[Tutorial] Create Collapsable and Expandable Fixed jQuery Modal Box

Today I am going to write a tutorial on how to write a Jquery enabled Collapsable and Expandable Fixed jQuery Modal Box. Q. What is jQuery ? A. jQuery is a new type of Javascript Library. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions … Continue reading “[Tutorial] Create Collapsable and Expandable Fixed jQuery Modal Box”

[Tutorial] Collapsable and Expandable jQuery Fixed Modal Box (Continue…)

Collapsable and Expandable jQuery Fixed Modal Box (Continue…) Our Jquery Code that actually does the binding for click events and adjusting the CSS dynamically. jq-fixed.js $(document).ready(function() { //Initialize our jquery actions initialposition(); //If user decides to make no action $(“#mask”).click(function(e){ $(this).hide(); resetmask(); }); function initialposition() { //position the navigation bar at top initially // when … Continue reading “[Tutorial] Collapsable and Expandable jQuery Fixed Modal Box (Continue…)”