#jquery
Read more stories on Hashnode
Articles with this tag
In JQuery, we use the .val() method to get or set values to input of forms. In Javascript, we have the .value method. Refer to the following code...
In jQuery, you can remove the DOM elements using the remove() or empty() functions. The equivalent in JavaScript is the removeChild method. Refer to...
In jQuery, you can perform network requests using the ajax() function. In JavaScript the equivalent is fetch() native function. Refer to the following...
In jQuery, you can find the next, previous, and parent element using the next(), prev(), parent() and closest() functions. The equivalents in...
In JavaScript, attaching event handlers on an element that is not yet created or does not exist on the page will throw an error. As a result, the...
The browser triggers many events. But here are some of the most common event types and event names: mouse events (MouseEvent): mousedown, mouseup,...