This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get all css property values for a single element | |
// https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle | |
// const cs = window.getComputedStyle(elem); | |
// Access single properties | |
// cs.getPropertyValue("z-index") | |
// cs["z-index"] | |
// cs.zIndex | |
// Example: Find all elements where a z-index is specified |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Find all umbraco nodes and the document type by the given document type id | |
-- Replace "XX_DOC_TYPE_ID_XX" with the document type id you want to look for | |
SELECT | |
ct.[nodeId] as 'DocumentType ID', | |
ct.[alias] as 'DocumentType Name', | |
un.[id] as 'Node ID', | |
un.[text] as 'Node Name', | |
un.* | |
FROM [dbo].[cmsContentType] ct | |
LEFT JOIN [dbo].[cmsContent] co |