Help

  1. is there any JAVASCRIPT thru the text fields like USERNAME and Password can be saved if Remember Me is Checked…?

  2. is there anyway for AUTO change in Iframe’s Height and Width according to that page which is loaded inside it?

  3. how can i custmoize the text field like if user click on the Text written inside dissapear and when the user click somewhere else the same text comes back…

  1. You could write a cookie and read it back in. Here is a link to help you get started with that: http://www.quirksmode.org/js/cookies.html

  2. Yes. Conditional statements using document.frameName.src or applying an id to the iframe and referencing that using something like:


var curr = document.getElementById('frameID'); 
curr.src;
if(curr.src == "http://somesite.com/")
{
   curr.style.width = 400px;
   curr.style.height = 400px;
}
<input type="text" value="default text" onfocus="this.value = ' ';" onblur="if(this.value == ' ')this.value='default text';" />