I want to extract data HTML using Java. I tried using Jsoup but so far I'm unable to extract the correct data. Here is the HTML code snippet from which I'm trying to extract the data.
<a href="javascript:;" id="listen_880966" onclick="MP3PREVIEWPLAYER.showHiddePlayer(880966, 'http://mksh.free.fr/' + 'lol/mp3/Paint_It_Black/18_the_black_dahlia_murder_-_paint_it_black_(rolling_stones)-bfhmp3.mp3')" title="Listen Paint it Black The Black Dahlia Murder Great Metal Covers 36" class="button button-s button-1 listen " >
I want the link ("http://mksh.free.fr/' + 'lol/mp3/Paint_It_Black/18_the_black_dahlia_murder_-_paint_it_black_(rolling_stones)-bfhmp3.mp3") and the title to be extracted into different variables. It would be really helpful if a sample code is provided along with the answer.