Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function (){
- let id = -1;
- $("#low-level").hide()
- $(".click").click(function (){
- id = $(this).attr("title")
- $("#high-level").hide()
- $("#low-level").show()
- $("#0, #1, #2").hide()
- $("#" + id).show()
- })
- $("#top").click(function (){
- $("#low-level").hide()
- $("#high-level").show()
- })
- $("#next").click(function (){
- $("#" + id).hide()
- id++
- id = id === 3 ? 0 : id
- $("#" + id).show()
- })
- $("#prev").click(function (){
- $("#" + id).hide()
- id--
- id = id < 0 ? 3 - 1 : id
- $("#" + id).show()
- })
- let index = -1;
- $("#dialog").dialog({
- autoOpen: false,
- modal: true,
- buttons: {
- Rate: function () {
- $("#data-" + index).html($("#input-data").val())
- $("#dialog").dialog("close")
- }
- }
- })
- $(".modal").click(function (){
- index = $(this).attr("title")
- $("#dialog").dialog("open")
- })
- })
Add Comment
Please, Sign In to add comment