How can i remove parameter from the link which i made through the following script... this include the use of jquery and if possible please let me know the solution in the jquery script
 <script>
            $(function() {
                $('a[name="searchLink"]').bind('click', function() {
                var a =$(this).attr('href', $(this).attr('href') + '?startdate=' + start().StartDate +'&enddate=' + start().EndDate);
                })
            })
    </script>