how can i pass ""(Quotes) as a parameter to a function in JavaScript from HTML?
>function showfn(s,a)
{
alert(s+a);
}
<body onload = "showfn("",'str')"
The "" in showfn("",'str') is not a blank value or a null , but a Quote like the quote in ("How are you").
Any help would be greatly appreciated.