Login Register






need some suggestion filter_list
Author
Message
RE: need some suggestion #11
(08-31-2012, 05:24 PM)h4r0015k Wrote: BumP!

.........................

?????

I'm using the latest version of Firefox.

Reply

RE: need some suggestion #12
(09-01-2012, 08:09 PM)Anima Templi Wrote:
(08-31-2012, 05:24 PM)h4r0015k Wrote: BumP!

.........................

?????

I'm using the latest version of Firefox.

it should work in firefox..can you try again..
[Image: fow57.jpg]

Reply

RE: need some suggestion #13
I don't know what to suggest because I just tried it and it doesnt work at all. Even typing the example that you have given does nothing. Maybe you could start there.
Just my thoughts no harm intended.

Reply

RE: need some suggestion #14
(09-03-2012, 10:13 AM)njoshie Wrote: I don't know what to suggest because I just tried it and it doesnt work at all. Even typing the example that you have given does nothing. Maybe you could start there.
Just my thoughts no harm intended.

thanks for the reply..can you tell me which browser are you using ... and can you visit here
Code:
http://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes

tell me number for equal sign..
[Image: fow57.jpg]

Reply

RE: need some suggestion #15
Quite a few things wrong that I see with the code you have.

The "Element" object does not have value in it's prototype by default, nor do you modify it's prototype. Element is what is returned when you call something like "document.getObjectById('first')", you are better off using a built in DOM manipulation function that can modify the inner html.

Also, not quite sure why you chose to keep your processing data within header tags, an input field seems like it would be more suitable for storing user input. The hidden="hidden" XHTML quirk isn't supposed to work the way you are using it, and doesn't work that way everywhere. A hidden input type is intended exactly for what you are trying to do there.

Reply

RE: need some suggestion #16
(09-04-2012, 08:00 AM)slbmeh Wrote: Quite a few things wrong that I see with the code you have.

The "Element" object does not have value in it's prototype by default, nor do you modify it's prototype. Element is what is returned when you call something like "document.getObjectById('first')", you are better off using a built in DOM manipulation function that can modify the inner html.

Also, not quite sure why you chose to keep your processing data within header tags, an input field seems like it would be more suitable for storing user input. The hidden="hidden" XHTML quirk isn't supposed to work the way you are using it, and doesn't work that way everywhere. A hidden input type is intended exactly for what you are trying to do there.

thanks for you reply...
[Image: fow57.jpg]

Reply