Search:
Type: Posts; User: Booma
Search :
Search took 0.01 seconds.
Hello everyone,
I'm new to jQuery but have written a fair bit of DOM JavaScript in the last few years. I'm using the following to successfully display a pop up bubble on a page.
I got the script...
Hello everyone
I understand why the code below doesn't work, the objDCMenu connection that objRS uses has already been closed.
What I'd like to know is why I don't get a page error. The page...
Thanks WolfShade,
That makes sense, so I'm going to have to run both types of query from the web page to get an accurate A-B test.
I'll run two functions, one after the other, calculating the...
Hello,
We run a fairly complex website using classic ASP. We are going to be moving our SQL Queries over to Stored procedures from the traditional code inline method.
What we need is a way of...
Does anyone know a way round this problem? It must be quite common.
I have a sub query that contains GROUP BY, this query returns a list of integers that I want to use within the filter of the...
Thank you, that makes complete sense. :)
Thanks very much, that's a great help. :)
Hello everyone,
I need to move some of my SQL Queries out of our site into Stored Procedures. I'm not finding it as simple as I thought I would.
After I've created a new Stored Procedure, I...
Thanks very much, that works a treat. Kind of you to help.
:-)
Hello everyone,
I'm having trouble getting this little script to work in IE. It's all fairly standard stuff, instead of having target in the a tag, which isn't valid in XHTML, the script picks up...
Thanks very much for your help. It's much appreciated.:)
Hello everyone,
I'm having some trouble validating a form containing rows of radio buttons.
Ultimately, I want to be able to check one row at a time and if a radio button in that row has been...
Hello everyone,
I'm validating a query string to make sure it's an Integer like this:
If Not IsNumeric(Request.QueryString("course")) Then do something else
Which works fine if the query...
Thanks,
although now it doesn't work in Firefox, Mmmmm. Thanks for the advice though :)
Hello,
I can't understand why this little function works in Firefox but won't work in IE (6)
function hide(id){
if (!document.getElementById) return false;
obj = document.getElementById(id);...
Hello, I'm currently using this script to highlight the text within a whole row of a table on mouseOver.
What I'd like to do is change it so that the background color changes. I've tried...
That works, Thanks very much :)
Hope your season gets better soon.
Thanks for the reply, much appreciated.
The link you posted is very usefull, however it doesn't indicate how to implement the code in an everyday scenario, like replacing multiple intances of a...
Hello,
I'd like to replace multiple instances of a text string in an html page with alternative text.
I'm presuming that I'm going to use .replace somewhere along the line like this:
<script...
Hello,
I'm presenting this value:
value="Bolton_Wanderers"
like this:
team.innerHTML = selectBox.value;