jquery cycle slideshow images
1
My jQuery cycle slideshow doesn't work. I wrote the script in html but I can't work out how to get it working. $("#next").click(function() { $(".cycle-slideshow").cycle('next'); }); $("#prev").click(function() { $(".cycle-slideshow").cycle('prev'); }); .body-content { width: 100%; min-height: 100px; float: left; margin-top:25px; } .content-left{ width:63%; float: left; display: inline-block; } .content-right { width: 34%; float: right; display: inline-block; padding: 5px; background-color: blue; } .slider { width: 100%; float: left; display: inline-block; position: relative; } .cycle-slideshow { position: relative; } .c...