Friday, 7 November 2014

How to read image Using Jquery & Html5

How to read image  using jquery & html5 File reader API is used to read a file from your local hard drive We can find Atricle  about File reader DEMO  HTML PART : <input id="imageread" type="file" /> <canvas id="img"></canvas> Jquery Code : <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js"></script> <script...

Monday, 3 November 2014

Add Extra Field Like Google Plus

Jquery code to add extra field using jquery. Demo  HTML PART : <div class='extdiv'> <input type="text" class="addmore"  /> </div> JQUERY CODE : <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js"></script> <script> $(document).on("keyup",".extdiv...