RE: CGI with JavaScript

2006-02-04 Thread Moreno, Javier
Your example above does not add nested style tags. From your title it looks like you may have problems with nested 'script' tags. If that is the case, can you provide a working example of the problem? HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328 >> If anyone is intereste

RE: CGI with JavaScript

2006-02-03 Thread Charles K. Clarkson
Moreno, Javier wrote: : However, I found that the -style automatically enters and : tags. Since I am using additional style tags within those : style tags, the browser assumes my nested style tags are actually : code and errors out. Therefore, how can I insert some custom text on : the of my do

Re: CGI with JavaScript

2006-02-03 Thread -alpha-
maybe print can help you? 2006/2/3, Moreno, Javier <[EMAIL PROTECTED]>: Hi all,I tried adding some _javascript_ external library code calls via:### Start snipprint $entry_cgi->start_html(   -title=>$tags{'HEADER'}, -script=>$jscript,-style => {-verbatim => '@import url("/ITTWeb/css/default.css");',

CGI with JavaScript

2006-02-02 Thread Moreno, Javier
Hi all, I tried adding some JavaScript external library code calls via: ### Start snip print $entry_cgi->start_html( -title=>$tags{'HEADER'}, -script=>$jscript, -style => {-verbatim => '@import url("/ITTWeb/css/default.css");', -src => '/ITTWeb/css/default.css'} ); ##