Files
UiQuestions/sidebars.js
bendtherules 29493b0348 Simiplify sidebar structure for DOM Manipulation
I have called this whole section as "DOM manipulation" (instead of DOM and events), so all the sub-files can be named easily with that context, without prefixing with "element-" or "DOM".

Renamed "DOM manipulation" page title to "Creating elements", then shortended title for "Child and Content" file by removing prefix.
2020-11-08 18:31:27 +05:30

37 lines
700 B
JavaScript

module.exports = {
"Quick Guide": {
"DOM Manipulation": [
"create-modify-element",
'element-child-content',
'element-position-scroll',
],
/*
'DOM and Events': [
'create-modify-element',
'read-from-element',
'event-callback-delegation',
'event-delegation-bubbling',
'input-elements',
'form-validation',
'mouse-touch-events',
'scroll-intersection-observer',
],
'CSS': [
'common-selectors',
'specificity',
]
*/
},
tasks: [
/*
'infinite-scrolling-page-with-api',
'draggable-element',
'drag-and-drop',
'clock-ui',
'popup-manager',
'todo-list'
*/
],
};