:javascript function getPayments(min, objj) { $('.spinner').show() $.get("/services/#{@service.slug}/paymentsdetail", { min: min }, function(data) { $('#payments').html(data); $('.spinner').hide() $('.filter a').removeClass('filter_selected'); $(objj).addClass('filter_selected'); }); } $(function(){ $('#min500').click(function() { getPayments(500, $(this)); return false; }); $('#min1000').click(function() { getPayments(1000, $(this)); return false; }); $('#min2500').click(function() { getPayments(2500, $(this)); return false; }); $('#min5000').click(function() { getPayments(5000, $(this)); return false; }); $('#min10000').click(function() { getPayments(10000, $(this)); return false; }); }); .grid_12 %ul#breadcrumb %li.home %a{ :href => '/'} Home %li %a{ :href => '/services' } Services %li %a{ :href => "/services/#{@service.slug}" } = @service.name %li Payments to Suppliers %h2= @page_title = "#{@service.name}: Payments to Suppliers" %p A service in the %a{ :href => '/directorates/' + @service.directorate.slug } = @service.directorate.name Directorate %p.noprint %a{ :href => "/services/#{@service.slug}" } « Suppliers by Spend summary for = @service.name %p.noprint.download %a{ :href => "/services/#{@service.slug}/payments.csv" } Download data as CSV .noprint %p Show payments over: %img.spinner{ :src => "/spinner.gif" } %p.filter %a#min500.filter_selected{:href => '#'} £500 %a#min1000{:href => '#'} £1,000 %a#min2500{:href => '#'} £2,500 %a#min5000{:href => '#'} £5,000 %a#min10000{:href => '#'} £10,000 #payments= haml :servicepaymentsdetail, :layout => false .clear -#