diff --git a/snippets/javascript/javascript.snippets b/snippets/javascript/javascript.snippets index 15faff5..5012a43 100644 --- a/snippets/javascript/javascript.snippets +++ b/snippets/javascript/javascript.snippets @@ -218,16 +218,16 @@ snippet gett getElementBy${1:Id}('${0}') # Elements by class snippet by. - ${1:document}.getElementsByClassName('${0:class}) + ${1:document}.getElementsByClassName('${0:class}') # Element by ID snippet by# - ${1:document}.getElementById('${0:element ID}) + ${1:document}.getElementById('${0:element ID}') # Query selector snippet qs - ${1:document}.querySelector('${0:CSS selector}) + ${1:document}.querySelector('${0:CSS selector}') # Query selector all snippet qsa - ${1:document}.querySelectorAll('${0:CSS selector}) + ${1:document}.querySelectorAll('${0:CSS selector}') # Debugging