?
=?iso-8859-2?Q?Pawe=B3?=
I have a following piece of code:
<html>
<head>
</head>
<body>
<p>123</p>
<p style="display:none" >456</p>
<p>789</p>
</body>
</html>
What I get in browser is:
123
<blank space>
789
What I would like to obtain is:
123
789
I simply don't want the browser to render anything.
Any ideas??
<html>
<head>
</head>
<body>
<p>123</p>
<p style="display:none" >456</p>
<p>789</p>
</body>
</html>
What I get in browser is:
123
<blank space>
789
What I would like to obtain is:
123
789
I simply don't want the browser to render anything.
Any ideas??