Home > UI/UX Development (Page 6)

jQuery: Difference between remove(), empty() and detach() methods

jQuery Difference between remove(), empty() and detach() methods

Definition: remove() – Removes all child elements with selected element. In this method you can restore all data but not event handlers of removed elements from the DOM. All data and events related with elements will be removed. empty() – Removes all content and child elements from the selected element. This method

This Article is TAGGED in , , , . Read more

TYPES OF RESPONSIVE DESIGN IN HTML

Responsive Design:  Responsive web design (RWD) is an approach to web design aimed at allowing desktop webpages to be viewed in response to the size of the screen or web browser one is viewing with.  The Viewport: The viewport is a short tag that is included in the head of your HTML

This Article is TAGGED in , . Read more

CSS selectors

In CSS, Selectors play main role to selecting a particular content. CSS selectors are very brief topic but for simplicity we categorize it in following easy way Universal Selectors Element type ID selectors Class selectors Descendant selectors Child selectors Sibling selectors Adjacent sibling selectors Attribute selectors Pseudo class Pseudo element Universal Selectors Universal selectors are like a wild card, it select all html

Read more

What is $rootScope in angular js?

An AngularJS application has a single $rootScope. All the other $scope objects are child objects. The properties and methods attached to $rootScope will be available to all the controllers. The following example demonstrates the $rootScope and $scope object. [crayon-685929c52df3d265610837/] and the output looks like  [crayon-685929c52df43919914914/] Drop comment if you have any query. :)

This Article is TAGGED in , . Read more

Select all, deselect all in angular material.

Consider we have page status list. [crayon-685929c52e32a444573497/] then out html looks like as, [crayon-685929c52e32f080630018/] and her we have 2 functions for select/deselect all. [crayon-685929c52e331133833966/] If you have any query then drop a comment.:)

This Article is TAGGED in , . Read more

Excel download in asp.net MVC with angular js which fetch data from server side with client side filters.

Consider we are downloading page name, description in excel. 1. we need to declare which field to includes from list for excel download. [crayon-685929c52e772595984548/] In html file. we are declaring 2 buttons. one is hidden. from shown button we will click to hidden button which will apply fiilter on data that comes from

This Article is TAGGED in , , , , , . Read more