<!DOCTYPE html>
<html>
    <title>download csv</title>
    <head>
        <script src="
http://code.jquery.com/jquery-1.11.0.min.js"></script>
        <script type="text/javascript" src="download.js"></script>
    </head>
    <body>
        <div align="center">
            <h3><u>Enter JSON data</u></h3>
            <div class='mydiv'>
                    <textarea id="txt" class='txtarea' rows="15" cols="100">[{"Vehicle":"BMW","Date":"30 Jul 2013 09:24 AM","Location":"Hauz Khas","Speed":42},{"Vehicle":"Honda CBR","Date":"30 Jul 2013 12:00 AM","Location":"Military Road","Speed":0},{"Vehicle":"Supra","Date":"30 Jul 2013 07:53 AM","Location":"Sec-45","Speed":58},{"Vehicle":"Land Cruiser","Date":"30 Jul 2013 09:35 AM","Location":"DLF Phase I","Speed":83}]</textarea>
            </div>
            <br/>
            <button class="download">Download CSV</button>
        </div>
    </body>
</html>