Bo Wu's IT Lab

If winter comes, can spring be far behind?

Browsing Posts in Web

This page shows you how to remove spaces from a text field. Any spaces entered by the user will be removed when they click anywhere outside the text field. Try it here: Step 1 Add the following code to your head: <script language="javascript" type="text/javascript"> function removeSpaces(string) {  return string.split(‘ ‘).join(”); } </script> Step 2 Use [...]

I added a background picture to a flash object embedded in a web page. In order to make the background picture can be displayed through the flash animation, I added oneobject parameter: <param NAME="wmode" VALUE="transparent"> The whole html code are as follows: <table width="760" border="0" cellspacing="0" cellpadding="0" background="image/01.jpg">       <tr>       [...]