I can't quite work out exactly what it is you're trying to do.
Do you want the test1 variable to contain the string "Serial#=123456" instead of "IdentifyingNumber=123456", or are you trying to...
I'm out of ideas. Since I'm not really sure what else is going on in your page I've set up a test version here where I've copied your function and the only changes I've made are I've commented out...
Well you could disable then re-enable the specific buttons while the function is running, or perhaps dynamically create a div and position it over the contents of the window.
Are you saying the transid field is never being submitted, or only when whereTo=="toolbox"? Because you have an undefined variable transID. Should that be the value of the transid field as it is in...
You're printing join(", ",@drivers),"\n"; before sending any (valid) headers to the browser, which is why it's interpreting it as a malformed header. You have the print $q->header; line further...
Hi, thanks for your replies, the solution looks so obvious now :rolleyes:. You're right about me wanting to match more than one non-alpha character, that only occurred to me after I'd posted but I...
<script type="text/javascript">
<!--
var newsindex = 0;
var newsdelay = 8;
var news = new Array();
news[0] = 'a test of a Title News|just testing to write...
I'm tring to write a simple text search that ignores any non-alphanumeric characters. For example, I don't want a user to enter something like "find this" and not get a match because the string...
oh ok, is there any reason we shouldn't use my method, other than the fact the CGI module does the work of converting the %hex numbers back to characters?
This is a Microsoft example. I think it uses the windows script host to run if you save it as a .js file on your computer, but I doubt it will run directly from a web page.
This will take the variables out of the query string providing it only contains text and numbers. Any other characters will be turned into hex codes
eg ! = %21
I'm trying to install the GD Perl module on my computer, but I'm really confused as to how to do it. I've spent hours searching online but can't find a step by step guide that i can follow.
I'm...
I'm trying to add something to a Perl script for a chatroom that will stop annoying users from posting long strings of the same letter or character. For example, if the string contains 5 or more of...
Is there any way of repositioning and resizing a window once it has already been opened?
I don't know what the initial size and position is, so I can't use window.resizeBy(x,y) and...