I'm New to Jquery. I need help to solve this. In my project there is a scenario that i need to Export a data in a Text box to Excel using JQuery i tried this Code. But it is not working as Expected\[code\]$( "#btnExport" ).click(function() { var Contents = $('#<%=txtProceed.ClientID %>').html(); alert(''+Contents);window.open('data:application/vnd.ms-excel, ' + '<table>'+encodeURIComponent($('#<%=txtProceed.ClientID %>').html()) + '</table>' );alert('exporting records...');});\[/code\]Here txtProceed is the text box data i need to export it on the Click event of btnExport.i cant make use of Server side codes.