Today I figured out that it is actually possible to have Javavscript functions and VBScript functions on one page and it is also possible to call a VBScript function from a JavaScript function. Previously, I didn’t think it’s possible - scripting geeks, please forgive me.
Filed under: html code editing, javascript & vbscript | Comments (6)
When dealing with single and double quotes on the html or asp page, it is sometimes necessary to change them to so called character entity. Here’re the most common replacements I use:
& — &
‘ — ' or '
> — >
< — <
” — "
The character entities [...]
Filed under: html code editing, web design | Comment (0)