List/Grid Tag Archives: javascript

Change iframe url using javascript

Change iframe url using javascript

If you want to change the iframe url from the iframe window, you can use this small function to change the url of the iframe. <script type=”text/javascript”> $(document).ready(function() { $(‘#clickToClose’).click(… Read more »


Open link in parent from child window or iframe using javascript

Open link in parent from child window or iframe using javascript

If you want to control parent window’s URL from the child frame or child window you can use “window.parent” to control the parent window. The complete solution is: <script type=”text/javascript”>… Read more »


How to upload multiple files at a time

How to upload multiple files at a time

To upload a file first of all you have to set the form  “enctype” Like the given blow example. <form id=”form1″ name=”form1″ method=”post” action=”” enctype=”multipart/form-data”> By this Javascript user can… Read more »


© 2012 Sumit Bansal. All rights reserved. XHTML / CSS Valid.