Contents

Views 5565 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

Observing show/hide events with jQuery.


HTML Code

<button id="btnShow">Show</button> <button id="btnHide">Hide</button> <div class="container"> <div id="foo"> I am #foo </div> </div> <div id="console"> </div>

CSS Code

.container { height:60px; margin:10px; } #foo { background-color:#eeeeee; width:150px; height:50px; text-align:center; font-size:20px; }

JQuery Code

//The magic code to add show/hide custom event triggers (function ($) { $.each(['show', 'hide'], function (i, ev) { var el = $.fn[ev]; $.fn[ev] = function () { this.trigger(ev); return el.apply(this, arguments); }; }); })(jQuery); //on Show button click; show the #foo div $('#btnShow').click(function(){ $('#foo').show(); }); //on Hide button click; hide the #foo div $('#btnHide').click(function(){ $('#foo').hide(); }); //Add custom handler on show event and print message $('#foo').on('show', function(){ $('#console').html( $('#console').html() + '#foo is now visible'+ '<br>' ) }); //Add custom handler on hide event and print message $('#foo').on('hide', function(){ $('#console').html( $('#console').html() + '#foo is hidden'+ '<br>' ) });


[출처] https://www.viralpatel.net/jquery-trigger-custom-event-show-hide-element/




?

List of Articles
No. Category Subject Author Date Views
1165 PPT [android] XML파서(XMLParser)의 종류와 성능 비교에 대한 발표 자료 file hooni 2013.04.23 79350
1164 Develop [ios] Random Thoughts: Rand() vs. arc4random() hooni 2013.10.31 77976
1163 Develop [json] 종결자 (설명과 웹, C/C++/C# 프로그램 샘플 코드) file hooni 2013.04.23 77121
1162 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 70410
1161 Develop [vb] 비주얼 베이직 자격증용 ㅎㅎ hooni 2003.04.23 68519
1160 Develop [iphone] performSelector:withObject:afterDelay: 에 대한 내용 hooni 2013.04.23 68361
1159 Develop [vb] 비주얼 베이직 순위 정렬 루틴 hooni 2003.04.23 66296
1158 Develop [vb] 비주얼 베이직 141페이지 hooni 2003.04.23 65836
1157 Develop [Android] 2010년에 만들었던 세미나 자료. file hooni 2013.05.28 65401
1156 Develop [vb] 비주얼 베이직 131페이지 hooni 2003.04.23 65230
1155 Develop [c#] 간단한 IPC 통신 예제 hooni 2013.04.23 64552
1154 Develop [sh] 쉘스크립트 if 비교 연산 hooni 2020.05.26 64341
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 99 Next
/ 99