Toggling an image src with jQuery
问题 I wrote some code to toggle the src of an image and also to pause/resume the jQuery cycle2 plugin. I'm not sure why it isn't working and would appreciate some help. $('.play-pause').click(function(){ if ($(this).attr('src', '/images/template/pause.png')) { $(this).attr('src', '/images/template/play.png'); $('.cycle-slideshow').cycle('pause'); } else if ($(this).attr('src', '/images/template/play.png')) { $(this).attr('src', '/images/template/pause.png'); $('.cycle-slideshow').cycle('resume');