[CSS]combinator(hover) :hover + :hover ~ :hover > :hover :hover::before :hover::after .. 개발/CSS 2024.10.14
[Front]mouseover-hidden Selected 1 mouseover target 2 mouseover target 3 mouseover target 1 hidden target 2 hidden target 3 hidden target None 1 mouseover target 2 mouseover tar.. 개발/Front-end 2024.10.12
이모지*검색창 Ref. https://iamdaeyun.tistory.com/entry/%EC%9C%88%EB%8F%84%EC%9A%B0%EC%97%90%EC%84%9C-%EC%9D%B4%EB%AA%A8%EC%A7%80-%EA%B2%80%EC%83%89%EC%B0%BD-%EC%95%88-%EB%9C%B0-%EB%95%8C 개발 2024.10.02
[JQ].sortable() .sortable()EventsactivatebeforeStopchangecreatedeactivateoutoverreceiveremovesortstartstopupdatestartactivateoversortoutchangebeforeStopupdateremovereceivedeactivatecreatestop0→1start 0activate 1activate 2activate 0over 0sort 0sort 0sort 0out 0sort 0change 0change 1over 1sort 0out 1sort 0over 1sort 0beforeStop 0update 0remove 0receive 1update 1deactivate 1out 1deactivate 2deactivate 0stop 0this .. 개발/JQuery 2024.09.18
[JS]URL이동 location location.href location.assign window.location window.location.href window.location.assignlocation.replace window.location.replacewindow.openJS*URLRedirectNavigatelocation="https://www.mozilla.org"location.href="https://www.mozilla.org"location.assign("https://www.mozilla.org")window.location="https://www.mozilla.org"window.location.href="https://www.mozilla.org"window.location.assign("h.. 카테고리 없음 2024.09.04
$() vs [] $()$('')$("")$(``)$('.a')Objectobjectobjobj = $('.a')objobj[0]`${obj[0]}`$(obj[0])let obj = $('.a')typeof obj 👉 object(typeof)obj 👉 Object(Prototype)obj[0] 👉 Element(JS)`${ obj[0] }` 👉 string $( obj[0] ) 👉 Element(JQ)[][''][""][``][`a`]Arrayarrayarrarr = [`a`]arrarr[0]`${arr[0]}`$(`${arr[0]}`)let arr = [`a`]typeof arr 👉 object(typeof)arr 👉 Array(0)(Prototype)arr[0] 👉 string`${ arr[0] }` .. 개발/JQuery 2024.08.31
[JQ]Class*Attribute Class.addClass().removeClass().addClass(` `).removeClass(` `).addClass(`·`).removeClass(`·`)AB -> ABCAB -> AAttribute.attr().attr(`class`, ` `).attr(`style`, ` `).attr(`class`, `·`).attr(`style`, `·`)AB -> ABCAB -> A 개발/JQuery 2024.08.25