The reason it isn't working correctly is because you are setting the tmp property of an object to the value of the response, but which object I'm unsure. You can try changing the assignment in the...
posiden: would you care to share, incase anyone else should run into the same problem? Personally I would have gone with a fixEvent function, of which I know there are many, to attempt to get the...
The first problem I see is that your form tag doesn't have an action set, so it is posting to the current page, not your php script. If I'm understanding you correctly you want the form to post to...
The problem, incase anyone else should run into something like this, turned out to be an errant comma on line 110 (of the revised pastebin). Once I removed that the other problems in the script were...
Hey Youngie, the first question I need to ask is what action is causing the pop-up location to change? What I mean to ask is whether or not HTML links are the cause of the page change, or if there...
I've got a bit of code that's giving me a bad case of agita. The code in question handles an AJAX login followed by a simple GET request and works fine in FF but throws errors in Chrome and IE7. The...
I've run into a problem that I cannot seem to find any answer to. I have a .wsdl file from a SOAP service that I'm using locally while testing scripts (I made a copy of the .wsdl...
Why yes, yes there is. I try to avoid using innerHTML whenever possible (personal quirk I suppose) but it is significantly faster for something like this:
A quick glance says that it probably works, my guess is that the problem comes in when you're putting it into HTML. HTML doesn't like whitespace, and will ignore them after a certain amount (2 or 3...
Untested, but given the site setup as you have it (no ids for any element and that exact setup. ie the div you want to wrap is the first div below body) here's a solution:
Here's an expansion on Detect's script. Currently it collects all spans and checks to see if it's immediate parent has the class column (following your example) but it can be easily be modified to...