Skip to content

Instantly share code, notes, and snippets.

@isogunro
isogunro / .block
Created January 9, 2019 14:01
fresh block
license: mit
@isogunro
isogunro / spListForm.js
Created September 23, 2018 01:41
This manipulates a SP list form using the DOM API
/*Get a reference to the chief approve drop down box*/
var chiefApprove = document.querySelector("[id^='ChiefDocumentApproval']");
/*Attach an onchage event to drop down*/
chiefApprove.onchange = function(){
/*Grab the selected value*/
var aValue = chiefApprove.options[chiefApprove.selectedIndex].value;
/*Show and hide feedback field based on the selected value*/
@isogunro
isogunro / code.js
Created September 23, 2018 01:36
SharePoint DOM development
var chiefFeedback = document.querySelector("[title='Chief Feedback']");
chiefFeedback.parentNode.parentNode.parentNode.style.visibility = "hidden";