We can edit and save user data and save the input from the user to the view.
Main container for the view.
Then we need to create a view and events for the view.
var ContactForm = Backbone.View.extend({
el: '#contact-form-container', // Wrapper of the view
events: {
'click .edit-button': 'editForm', // Event for edit form
'click .save-button': 'saveForm', // Event for save form
},
});
View Template
Name
{{name}}
...
Custom upload button using CSS
Sometimes the default file input element looks odd or sometimes the requirement will be different. Here are some techniques how we can customize the file input.
...
CSS RESET

What is css reset ?
CSS Reset is nothing but a set of user defined css rules which over-rides the default rules of the web browsers.
Why we need?
There are number of web browsers and they render the elements differently. Default view of the document is different. You might have seen some elements like select buttons, input elements, tables behave differently in IE, Chrome and Mozilla. So our design will be different in these browsers....
Margin Collapse

Margin Collapse is not any CSS property but its a behaviour of block level elements. Top and bottom
margins of blocks are sometimes combined (collapsed) into a single
margin whose size is the largest of the margins combined into it, a
behavior known as margin collapsing.
In the
above example the first paragraph is having the margin bottom 20px and
second paragraph is having margin top 30px. So here the two margins will
...
Next PostNewer Posts
Home