Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function (){
- var id = -1;
- console.log(id)
- $("#low-level").hide()
- $(".click").click(function (){
- id = $(this).attr("title")
- $("#high-level").hide()
- $("#low-level").show()
- $("#0, #1, #2, #3").hide()
- $("#" + id).show()
- })
- $("#top").click(function (){
- $("#low-level").hide()
- $("#high-level").show()
- })
- $("#next").click(function (){
- $("#" + id).hide()
- id++
- id = id === 4 ? 0 : id
- $("#" + id).show()
- })
- $("#prev").click(function (){
- $("#" + id).hide()
- id--
- id = id < 0 ? 4 - 1 : id
- $("#" + id).show()
- })
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement