at they have a script that doesnt let you submit the form till it is filled n, I'm wondering if anyone knows of an easyer script like this that does basicly the same thing, it looks like it uses DOM
but the problem with this script is if the user has javascipt disabled they will npt be able to sumit the form due from disabled="disabled" on it
Code:
[URL unfurl="true"]http://spaces.msn.com/signup.js[/URL]
function cc()
{
var o = document.getElementById("ca");
if (null != o)
{
o.value = "1";
}
return true;
}
<input id="ca" type="hidden" value="0" name="ca">
<button value="Create your space" type="submit" id="CreateSpace" name="CreateSpace" onclick="return cc();" disabled="disabled">
but the problem with this script is if the user has javascipt disabled they will npt be able to sumit the form due from disabled="disabled" on it