javascript - Semantic UI Popup doesn't open -


i'm making first steps semantic ui , got first problems can't fix.

i want create simple popup trigger here http://semantic-ui.com/modules/popup.html#specifying-a-trigger-event . i've tried copy , paste .html , .js code , inlcuded semantic.min.js , semantic.min.css in page header, doesn't open popup whatever reason.

here's html code use:

<div class="ui singleimg container">     <div class="ui hidden divider"></div>     <div class="ui 2 column stackable grid">       <div class="eleven wide column">           <h1 class="ui dividing header">test</h1>       </div>       <div class="five wide column">         <div class="ui teal button" data-title="using click events" data-content="clicked popups close if click away, not if click inside popup">download</div>         sidebar       </div>      </div> </div> 

and before </body> i've added following .js code:

<script>     $('.teal.button')       .popup({         on: 'click'       })     ; </script> 

//update: created fiddle here: https://jsfiddle.net/w46ynjwu/

there problem in code did not add jquery.

here (almost)same fiddle working fine

<script>//no need of tag in jsfiddle </script> 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -