소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 16:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill jquery명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | jquery |
| description | jQuery — legacy, server-rendered, WordPress, pre-framework codebases. |
jquery in package.json OR <script src="...jquery..."> in HTML$ or jQuery function calls in .js files.ready(), $(document).on(), $(window) patterns.select2(), .dataTable(), .slick(), .datepicker()$.ajax(), $.get(), $.post() callsNo official MCP server is available for jQuery.
Reference the jQuery API at api.jquery.com. A documentation search MCP (if configured) can retrieve specific API pages on demand.
jQuery exists in this project for a reason — legacy, WordPress constraints, plugin ecosystem, or team familiarity. Do not refactor jQuery to vanilla JS or a framework unless explicitly tasked. Integrate with the existing pattern; flag modernization opportunities in code review notes only.
| Concept | Detail |
|---|---|
$(selector) | Returns jQuery object wrapping matched elements; methods chain on it |
| DOM ready | $(function() { ... }) — safe to access DOM after parsing |
| Event delegation | .on('event', '.child', fn) — works on dynamically added elements |
| AJAX | $.ajax(), $.get(), $.post() — callback or Promise (.done(), .fail(), .always()) |
| Plugins | Extend $.fn — called as $('.el').pluginName(options) |
| Chaining | Most methods return the jQuery object — enables $el.hide().delay(200).fadeIn() |
// DOM ready
$(function () {
// safe to access DOM here
})
// Event delegation — preferred; works on dynamic content
$(document).on('click', '.btn-submit', function () {
const $form = $(this).closest('form')
$form.find('.error').hide()
})
// Cache selectors — never re-query inside loops
const $modal = $('#confirmModal')
$modal.find('.modal-title').text('Are you sure?')
$modal.modal('show')
// AJAX with Promise style
$.get('/api/users')
.done(function (data) { renderUsers(data) })
.fail(function (xhr) { showError(xhr.responseJSON?.message) })
// Plugin initialization pattern
$('.select-field').select2({
placeholder: 'Choose an option',
allowClear: true,
})
When jQuery coexists with Vue, React, or Alpine:
$.trigger() / $(document).on()) to bridge jQuery and framework code if needed$() results — const $el = $('#id') once; never re-query the same selector repeatedly, especially inside loops.on() not .click(), .submit(), .hover() — shorthand aliases are deprecated$(this) in handlers — cache as const $self = $(this) if used more than once in the same handler$.get() on unvalidated user-supplied URLs — always whitelist or validate URLs before AJAX to prevent SSRF.select2() twice initializes twice; always destroy before re-init if reconfiguringSOC 직업 분류 기준