I have a beginner's problem with jquery UI script not loading. Basically I am trying to make some checkboxes as buttons but this is not working when I declared jquery UI script like this:
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<input type="checkbox" id="check" /><label for="check">Toggle</label>
<div id="format">
<input type="checkbox" id="check1" /><label for="check1">B</label>
<input type="checkbox" id="check2" /><label for="check2">I</label>
<input type="checkbox" id="check3" /><label for="check3">U</label>
</div>
<script>elements within the html pane as well as including others in the Frameworks & Extensions options - you were mixing the two. If you select jquery-ui from the Frameworks & Extensions options at the left it works: jsfiddle.net/cu8mS/2 In a real webpage include both jquery and jquery ui as per Tieson T.'s answer.