Search Results

1
vote

javascript function not behaving correctly

I assume you still have it in a file that is parsed by PHP, like the others already have said. Then it is probably something above this code snippet that confuses the php-parser so it don't recogni …
0
votes

how can I make a text entry field

Use a <input type="text"/> or <textarea></textarea>, and attach a javascript on keypress, keydown or keyup that will copy it to the other field. Cross-browser script: …
5
votes

Base 64 encode vs loading an image file.

Base64 encoding makes the file bigger and therefore slower to transfer. By including the image in the page, it has to be downloaded every time. External images are normally only down …
2
votes

What is the problem with this ajax(with prototype)?

This is a long shot, but without more information and seeing more of your code I have to ask this so you could rule it out: Could it have something to do with the user double-clicking on the link a …