Hi I tried simple javascript + form in https. But javascrip alert is not working in some https. Can any one know that why it is not working
My sample code is
[code=html]
<html>
<head>
<script>
function hi()
{
alert("gu");
}
</script>
</head>
<body onload="return hi();return false;">
<form name="Import" method="POST" onsubmit="retur n hi()" enctype="multip art/form-data">
<input type="submit" name="submit1" value="submit">
</form>
</body>
</html>
[/code]
My sample code is
[code=html]
<html>
<head>
<script>
function hi()
{
alert("gu");
}
</script>
</head>
<body onload="return hi();return false;">
<form name="Import" method="POST" onsubmit="retur n hi()" enctype="multip art/form-data">
<input type="submit" name="submit1" value="submit">
</form>
</body>
</html>
[/code]
Comment