Link to home
Start Free TrialLog in
Avatar of patelajk
patelajk

asked on

Display HTML instead of Alert

Hi

I have some code which displays an alert if Cookies are disabled. how can i modify this so that it displays an message in a label or in a <p> tag

E.g if cookies disbaled, show the below:

<p>Please Enabled Cookes...</p>

Thanks in advanced


<script language="JavaScript">
<!--
function cc()
{
 /* check for a cookie */
  if (document.cookie == "") 
  {
    /* if a cookie is not found - alert user -
     change cookieexists field value to false */
    alert("COOKIES need to be enabled!");
 
    /* If the user has Cookies disabled an alert will let him know 
        that cookies need to be enabled to log on.*/ 
 
    document.Form1.cookieexists.value ="false"  
  } else {
   /* this sets the value to true and nothing else will happen,
       the user will be able to log on*/
    document.Form1.cookieexists.value ="true"
  }
}
 
/* Set a cookie to be sure that one exists.
   Note that this is outside the function*/
document.cookie = 'killme' + escape('nothing')
// -->
</script>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of r0bert
r0bert
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial