jQuery(document).ready(function() {
	$('a#download-to-excel').click(function(e){
		e.preventDefault();

		var userSelected = $("input:checked") ; 
		var options = new Array();
		$.each( userSelected,function(index,value){ 
                          var id = $(value).attr('id') ;
			  if ( !isNaN( id ) )  
				options.push( id ); 		
                });
                options = options.join( ',' );

                console.log( options );
    
                window.location = $(this).attr('href')+"?options="+options ; 
		
	});
});

