Home > Ranjit Pokale (Page 3)

How to Make SharePoint Site Navigation Responsive

Hello everyone, in this post we will discuss on How to make SharePoint Site Navigation responsive. We make SharePoint navigation in two different ways, either by using Managed metadata term set or via SharePoint Structural Navigation. In this post, I’ll show you how it’s done using SharePoint Structural Navigation. Note: For SharePoint structural navigation

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

DOM traversing & manipulating in JavaScript

Hello everyone, in this post we will discuss about following points on Document Object Model (DOM). What is DOM? DOM traversing DOM manipulating What is DOM? The Document Object Model (DOM) is a programming API for HTML and XML. API specification defined by the World Wide Web Consortium (W3C). DOM represents how to write HTML and

This Article is TAGGED in . Read more

What is difference offset() and position()

Hello everyone, in this post we will discuss about difference between offset() and position() with example. offset() The offset() method set or returns the offset coordinates (current position) for the selected elements, relative to the document. offset() returns an object containing the properties top and left coordinate value. When positioning a new element on

This Article is TAGGED in . Read more

What is Method Chaining in JavaScript

Hello everyone, in this post we will discuss about following points on Method Chaining What is Method Chaining? Pros and Cons of Method Chaining What is method chaining? Method chaining is technique that allows to write several methods on jQuery selection in sequence in a single code statement. jQuery relies heavily on chaining. This makes it easy

This Article is TAGGED in . Read more

JavaScript Scope

Hello everyone, in this post we will discuss about following points on JavaScript Scope What is scope? What is Global/Local Scope? What is lexical scope? What is scope? In JavaScript, scope determines the accessibility (visibility). Scope refers to the current context of your code. Scopes can be globally or locally defined for both functions and variables. What is Global/Local Scope? In JavaScript there

This Article is TAGGED in . Read more

Publish SharePoint Hosted Add-ins

Hello everyone, in this post we will discuss about way to publish SharePoint Hosted Add-ins. SharePoint Add-ins overview There are two basic kinds of SharePoint Add-ins — SharePoint-hosted and provider-hosted. When you've finished developing, deploying and testing SharePoint Add-in the final step is making that add-in available to your users or clients.

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

CSS depended property

In CSS some css property which depend on other property value. They are related each other and works in together. Following CSS category will include dependent property are they Background Property Border Property List Property Position Property Table Property Background Property The background property in CSS allows you to control the background of any element like image

This Article is TAGGED in . Read more

Resize Add-In Parts dynamically in SharePoint Add-Ins

Hello everyone, in this post we will discuss about how to resize Add-in App Part. If you are reading this post first time, I would recommend read following articles SharePoint Hosted Add-In as an App Part SharePoint Hosted custom App Part properties Above my listed article give complete information about App Part/Add In

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