Yegoroot
4/15/2018 - 7:27 PM

JQUERY__SELECTOR

$("a[href^='http://']")
$("a[href$='.com']")
$("a[href*='html']")

$('p').eq(0) = document.getElementByTagName('p')

$(button).on('click', func); // навешивает событие
func(){};