Hello
how can i print space
for example
if i want
document.write( " ") // to print space
but by the statment above i dont get the space
so how i have space in document
?
thanks
Printable View
Hello
how can i print space
for example
if i want
document.write( " ") // to print space
but by the statment above i dont get the space
so how i have space in document
?
thanks
That's off topic here.
The appropriate group is XML, HTML, Javascript, Web and CGI.
That said, I might be able to help. It's not totally clear what your problem is, but it sounds like might have a problem of spacing which can be solved with:
document.write(" ")
cudabean
Oops! That didn't show up right.
try again:
document.write("& n b s p ;") without the spaces
hi again ..
sorry for the un understood question ..
all what i am looking for is :
how can i creat spaces bettwen two charachters??
for example :
i would like to print the following ..
(space) m
m (space) m
hope u can get my point ..
thanx...........
<script>
document.write("m m");
</script>
worked for me.
The following also worked:
<script>
document.write("m");
document.write(" ");
document.write("m");
</script>
I get
m m
cudabean