Home > remove

Difference between JavaScript remove() method and CSS display none

This article provides information regarding the use of the remove() method in JavaScript and display: none property in CSS. remove() – JavaScript I am assuming you have an HTML page. Create div Element in the body tag, as shown below, I am passing this keyword (which means current Element). [crayon-6766e406b424e321847641/] Inspect elements HTML view Add

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

How to remove user Permissions completely from SharePoint Site

We often get request from client to remove user from entire site. This is no longer tedious task now. You can follow below steps to achieve this. Open your SharePoint Site You can directly hit the URL <siteURL>/_layouts/15/people.aspx?MembershipGroupId=0 This will show all the list of users who has access on the site Select the User

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

jQuery: Difference between remove() 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 the removed elements from the DOM. All data and events related with elements will be removed. detach() – Removes all child elements with selected elements. Even though it keeps

This Article is TAGGED in , , . Read more

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