$(document).ready(function() { $.ajaxSetup({ cache: false }); $("a.dl-file").click(function() { var filename = $(this).text(); var hash = $("h3[data-torrent-id]").attr("data-torrent-id"); $.ajax({ type: "POST", url: hash, data: { filename : filename } }) .done(function( msg ) { $.notify( msg ); }); }); });