Link to home
Start Free TrialLog in
Avatar of Whing Dela Cruz
Whing Dela CruzFlag for Anguilla

asked on

How to include double quote on alert?

Hi! How to include double quote on the alert message?
    function itry()
    {
        alert(+ "Greate" +);
    }
I want the word Greate has a double quote like this; "Greate"
SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg 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
SOLUTION
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
Avatar of Whing Dela Cruz

ASKER

Hi! its working but what about if it is declared like this;
var ee = "Great";
Var ff = "Small";

alert()... Pls help its not working on me.
try the following
 function itry()
    {
        alert(+ \" ee  \"  +);
    }

Open in new window

Hi omaheshwar, Its not working. I've been tried many times...
ASKER CERTIFIED SOLUTION
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
Hi Guy, Its working Thanks both of you...