Vanilla JS equivalents of jQuery methods

Events

1
2
3
4
5
6
7
8
9
// jQuery
$(document).ready(function() {
// code
})

// Vanilla
document.addEventListener('DOMContentLoaded', function() {
// code
})
1
2
3
4
5
6
7
8
9
10
11
// jQuery
$('a').click(function() {
// code…
})

// Vanilla
[].forEach.call(document.querySelectorAll('a'), function(el) {
el.addEventListener('click', function() {
// code…
})
})

Selectors

1
2
3
4
5
// jQuery
var divs = $('div')

// Vanilla
var divs = document.querySelectorAll('div')
1
2
3
4
5
// jQuery
var newDiv = $('<div/>')

// Vanilla
var newDiv = document.createElement('div')

Attributes

1
2
3
4
5
// jQuery
$('img').filter(':first').attr('alt', 'My image')

// Vanilla
document.querySelector('img').setAttribute('alt', 'My image')

Classes

1
2
3
4
5
// jQuery
newDiv.addClass('foo')

// Vanilla
newDiv.classList.add('foo')
1
2
3
4
5
// jQuery
newDiv.toggleClass('foo')

// Vanilla
newDiv.classList.toggle('foo')

Manipulation

1
2
3
4
5
// jQuery
$('body').append($('<p/>'))

// Vanilla
document.body.appendChild(document.createElement('p'))
1
2
3
4
5
// jQuery
var clonedElement = $('#about').clone()

// Vanilla
var clonedElement = document.getElementById('about').cloneNode(true)
1
2
3
4
5
6
// jQuery
$('#wrap').empty()

// Vanilla
var wrap = document.getElementById('wrap')
while(wrap.firstChild) wrap.removeChild(wrap.firstChild)

Transversing

1
2
3
4
5
// jQuery
var parent = $('#about').parent()

// Vanilla
var parent = document.getElementById('about').parentNode
1
2
3
4
5
// jQuery
if($('#wrap').is(':empty'))

// Vanilla
if(!document.getElementById('wrap').hasChildNodes())
1
2
3
4
5
// jQuery
var nextElement = $('#wrap').next()

// Vanilla
var nextElement = document.getElementById('wrap').nextSibling

AJAX

GET

1
2
3
4
5
6
7
8
9
10
11
12
// jQuery
$.get('//example.com', function (data) {
// code
})

// Vanilla
var httpRequest = new XMLHttpRequest()
httpRequest.onreadystatechange = function (data) {
// code
}
httpRequest.open('GET', url)
httpRequest.send()

POST

1
2
3
4
5
6
7
8
9
10
11
12
13
// jQuery
$.post('//example.com', { username: username }, function (data) {
// code
})

// Vanilla
var httpRequest = new XMLHttpRequest()
httpRequest.onreadystatechange = function (data) {
// code
}
httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
httpRequest.open('POST', url)
httpRequest.send('username=' + encodeURIComponent(username))

JSONP

1
2
3
4
5
6
7
8
9
10
11
12
// jQuery
$.getJSON('//openexchangerates.org/latest.json?callback=?', function (data) {
// code
})

// Vanilla
function success(data) {
// code
}
var scr = document.createElement('script')
scr.src = '//openexchangerates.org/latest.json?callback=formatCurrency'
document.body.appendChild(scr)

Get Json

1
2
3
4
5
6
7
8
9
// jQuery
$.getJSON( "https://www.googleapis.com/plus/v1/people/115681458968227650592?key=MY_API_KEY", function( data ) {
console.log(data);
});
// Vanilla
fetch('https://www.googleapis.com/plus/v1/people/116725099929439898086?key=MY_API_KEY')
.then(function(response){
console.log(response);
});