Access-Control-Allow-Origin: http://localhost:3000, https://example.com
let width = 100;
document.onmousewheel = ({deltaY}) => {
deltaY > 0 ? width-- : width++;
previouslySelectedElement.style.width = width + 'px';
}
console.log(errors)
ajaxRequest().then(() => {
window.location.href = 'http://www.example.com'
})
$(document).ready(function () {
document.addEventListener('wpcf7mailsent', function (event) {
$('.wpcf7-form-control').each(function () {
var $this = $(this);
var $parent = $this.parent();
$this.addClass('message-send')
setTimeout(() => $this.removeClass('message-send'), 1000);
});
}, false);
});
new Uint8Array([1,2,3]).toString()
> "1,2,3"
new Uint8Array("1,2,3".split(','))
> Uint8Array [1, 2, 3]