DEV Community

Discussion on: I Need jQuery

Collapse
 
sournyb profile image
Brahim Sourny

Hi, in case. Here is some helpers functions:

// Select Element by ID
const selectIdElement = (element) => {
return document.querySelector(element);
};

// Select Element by class, id or tag name
const selectXElement = (element) => {
return document.querySelector(element);
};

// Select All Element That have the same attribute
const selectAll = (element) => {
return document.querySelectorAll(element);
}

// Select the parentNode
const selectParent = (element) => {
return document.querySelector(element).parentNode;
}

// Select the ChildNode
const selectChild = (element) => {
return document.querySelector(element).children;
}

// Create HTML element
const createElement = (element) => {
return document.createElement(element);
}

// Create text node
const createTxtNode = (element) => {
return document.createTextNode(element);
}

// Append Element to the DOM
const appendElement = (parentElement, childElement) => {
return parentElement.appendChild(childElement);
}