> For the complete documentation index, see [llms.txt](https://jihwan.gitbook.io/life101/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jihwan.gitbook.io/life101/javascript/jquery-1.md).

# 브라우저 콘솔에서 jQuery 사용하기

{% code title="console.log" %}

```javascript
// jQuery 불러오기

var jq = document.createElement('script');
jq.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);

// ... give time for script to load, then type (or see below for non wait option)
jQuery.noConflict();
```

{% endcode %}
