zipzap Posted July 18, 2012 Report Share Posted July 18, 2012 tenho o seguinte código:$(".play").live("click",function(event){ var ficheiro=xxxx $(this).toggle(function() { if (audio.canPlayType) { if (audio.canPlayType("audio/mpeg")) { audio.src=ficheiro+".mp3"; } else{ audio.src=ficheiro+".ogg"; } } audio.play(); $(this).find("img").attr("src","/images/stop.png"); }, function() { audio.pause(); audio.setCurrentTime=0; $(this).find("img").attr("src","/images/Button-Play-icon.png"); }).trigger("click"); });a classe .play é um link ,uma ancora.O que está a acontecer é que sempre que eu clico no link a página faz um scroll up.No href desse link tenho href="#"Como posso evitar isso? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted July 18, 2012 Report Share Posted July 18, 2012 event.preventDefault.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 zipzap Posted July 19, 2012 Author Report Share Posted July 19, 2012 Obrigado. Quote Link to comment Share on other sites More sharing options...
Question
zipzap
tenho o seguinte código:
a classe .play é um link ,uma ancora.
O que está a acontecer é que sempre que eu clico no link a página faz um scroll up.No href desse link tenho href="#"
Como posso evitar isso?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.