Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

double qoute inverted comma problem

by AlexTape (Monk)
on Aug 03, 2011 at 15:03 UTC ( [id://918295]=perlquestion: print w/replies, xml ) Need Help??

AlexTape has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks
I want to generate a dynamic button with cgi.pm

$var_Typ = "variable"; $q->button(-id=>"$var_Typ-parm-toggle", -value=>'show/hide', -onClick=>"toggle_visibility('$var_Typ');", -name=>"show table"),

but i dont get what i want:

<input type="button"  name="show table" value="show/hide" onclick="toggle_visibility(&#39;variable&#39;);" id="variable-parm-toggle" />

the & # 3 9 should be a simple ' to get up with the js function..
now i seek for your advice...

$perlig =~ s/pec/cep/g if 'errors expected';

Replies are listed 'Best First'.
Re: double qoute inverted comma problem
by Your Mother (Archbishop) on Aug 03, 2011 at 15:29 UTC

    CGI.

    use CGI ":standard"; my $var_Typ = "variable"; autoEscape(0); print CGI::button(-id=>"$var_Typ-parm-toggle", -value=>'show/hide', -onClick=>"toggle_visibility('$var_Typ');", -name=>"show table"); __END__ <input type="button" name="show table" value="show/hide" onclick="tog +gle_visibility('variable');" id="variable-parm-toggle" />

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://918295]
Approved by moritz
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 19:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found