Posts

Showing posts from November 2, 2018

Rest API To get Managed metadata Global navigation in sharepoint

/_api/navigation/menustate?mapprovidername=%27GlobalNavigationSwitchableProvider%27

Check wheter it is mobile or a desktop using jquerry

var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)

jQuery - Execute scripts based on screen size

$(window).resize(function () {             if ($(this).width() < '500') {                 alert("mobile");             }             else {                 alert("desktop");             }         });