jQuery

Customized Confirmation Box in jQuery

Submitted by GeePee on
This project will teach you on how to create a customized confirmation box using the jQuery plugin. In my example, I used the Delete Multiple Records project that I did before. When the user click the delete button, confirmation box will display confirming if you want to delete selected files. The user has an option to delete or cancel the process. By hitting "Confirm Deletion" button, files will

Sliding Sidebar in jQuery

Submitted by GeePee on
This project will teach you on how to slide in and out sidebar using jQuery plugin. You have an option in which side do you want the sidebar to come out. It is either left or right. First, the sidebar is hide and by pressing the menu button, the sidebar slide in. Hope you learn from this.

Editable Table in jQuery

Submitted by GeePee on
This project will teach you on how to create an editable tables using jQuery. This is very easy. You just have to include the editable table jQuery plugin in your project(you can google the plugin and download). Then, a few line of codes to save the edited data. Just click the table data to edit. By pressing enter and clicking outside or other table data, this will automatically update edited data

Online Examination Using PHP / MYSQL.

Submitted by tang3li2 on
Hi, This program is a full ajax(jquery) implementation it will cover features like javascipt(jquery element manipulation), php, mysql. Admin can add new examination input various answers, it will also show how to create your own MVC Pattern to reduce the reduncy of codings. The design was only using wire frame but the code is fully understandable because of the separation of model, views and

Sticky Sidebar Scroll in jQuery

Submitted by GeePee on
This project will teach you how to create a sticky sidebar scroll on your web page. This is very useful especially for a site that has a large content but smaller sidebar. This is to prevent an empty space in the sidebar. In my example, the sidebar stops scrolling when the uppermost point of the sidebar reaches the top of the window page. The sidebar's position becomes fixed. Hope you learn from