I've problem with FCKEditor 1.4.
If I put a link with some param in the querystring when I save all & becomes &
I tryed changhing the HTMLEncode function where it converts
text = text.replace(/&/g, "&") ;
but doesn't change the output... the & is still here.
how can I solve the problem?
Simone
If I put a link with some param in the querystring when I save all & becomes &
I tryed changhing the HTMLEncode function where it converts
text = text.replace(/&/g, "&") ;
but doesn't change the output... the & is still here.
how can I solve the problem?
Simone
RE: & become &
that's absolutely correct; & alone in an url is incorrect HTML (although everybody does it).
Try google after "ampersand url rfc".
Rudi
RE: & become &