Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Special chars that should be avoided are:

quotation marks " "question mark "?"number sign or hash "#"back slash "\"

 

If a question mark "?" or a hash "#" is used in code, so the code will be covered only until this special character. The special character itself and all subsequent characters are discarded.


If a backslash "\" is used within the code the browser will carry out a different modification depending on the browser in which the tag is called,.

Details, see the chart below:

Code                            Internet Explorer         Firefox

1bltest\test                   1bltestest                     1bltestest

2bltest\\test                  2bltest/test                   2bltest.test

3bltest\\\test                 3bltest/est                    3bltest.est

4bltest\\\\test                4bltest//test                  4bltest.test

5bltest\\\\\test               5bltest//est                   5bltest.est

...