https://github.com/mkabhishekdev/GraduateDeptWebsite-using-jQuery-Library
Independent work developing web application similar to University Graduate Dept. Front End using: Javascript, jQuery,RESTAPI
https://github.com/mkabhishekdev/GraduateDeptWebsite-using-jQuery-Library
css3 html5 javascript jquery-ajax jquery-library
Last synced: 7 months ago
JSON representation
Independent work developing web application similar to University Graduate Dept. Front End using: Javascript, jQuery,RESTAPI
- Host: GitHub
- URL: https://github.com/mkabhishekdev/GraduateDeptWebsite-using-jQuery-Library
- Owner: coderkemp
- Created: 2019-07-13T17:00:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-27T11:03:32.000Z (over 6 years ago)
- Last Synced: 2024-11-14T16:39:00.706Z (over 1 year ago)
- Topics: css3, html5, javascript, jquery-ajax, jquery-library
- Language: JavaScript
- Homepage:
- Size: 1.79 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GraduateDeptWebsiteFrontEnd
Requirement:
To Develop a Front-end using JQuery library, Javascript, HTML5, CSS3. The website should be in similarity to the Graduate departments home page.
CODE-FLOW
-----------------------------------------------------
1. Used Modular programming approach of Front end design.
- Create .js files & have intercalls between functions.
2. In jQuery, we can access the 'id' defined in HTML page using "$"
Ex: $("#name").click(function() {
})
3. ISTMain.html is the html file.
- IST.js and Services.js are the two javascript files invoked from ISTMain.html.
- styles.css is the style sheet used
4. Plugins Used
jQuery UI Plugin
- jQuery UI is a set of user interface interactions, effects, widgets & themes built on top of the jQuery javascript library. whether building a highly interactive web application or adding a date picker to a form control, jQueryUI is the choice.
jQuery Datatables Plugin
- It's a jQuery plugin which adds advanced features to any HTML table
jQuery Dialog Plugin
- A jQuery plugin which which provides with the feature of opening content interactively
Cookies?
- small text files that are placed on a users users computer by a website.
- < 4 KB
- They can only store strings
- Two types: session cookies(they are stored as long as the browser is open,no expiration), persistent cookies(they expire,stores on the user's disk until the expiration date)
Local-Storage?
- After HTML5 came out, Local storage has replaced cookies.
- Important difference is unlike cookies, data does not have to be sent back and forth with every http request.
- Local storage can hold up to 5MB of information.
- Local storage can not only store strings but also Javascript objects.