Chris, thanks! Yes, I was trying to save some time because I was certain the issue had to do with binding the javascript being brought in and placed on the page with innerHTML. Had I posted the actual onClick() event in my code, you would have noticed a missing quotation mark.. Appreciate the...
Hi folks. Been searching google and forums for a while and unable to find this result. Here's a quick simple piece of code to explain.
<html>
<head>
<script>
function myFunc() {
alert('hello');
}
function ajaxCall() {
//performing ajax call here and using innerHTML to place...
I've read a few posts dated back several years. Wondering if there's a new implementation for IE 8 or 9 or Safari so I can access select list properties by just hovering over the option. I know I can do it with a crafty CSS list, but I'm trying to implement something quick on a page using a...
I have a chunk of javascript that changes the opacity of the web page, positions an animated GIF in the middle of the screen, then fires an XMLHttpRequest to the server to collect data. When the XMLHttpRequest object gets to the Send method, the animation stops until the object gets a response...
Solved. Instead of changing the border style directly with Javascript, I setup another class and use Javascript to switch between the two classes. Hover works good now.
I have table elements with a "td1" class definition. My CSS is written as follows
.td1:hover {
border:red solid 1px;
}
However, if I change the border style using JavaScript like this.
elmtRef.style.border = "blue solid 1px;"
Everything works great, but the hover no longer fires on...
Worked like a charm! Thanks a million!
SELECT Games.gm_date, Games.tm_id,
Home.tm_div, Home.tm_conf, Games.gm_oppid,
Opp.tm_div AS opp_div,
Opp.tm_conf AS opp_conf
FROM Games
INNER JOIN Teams AS Home
ON Games.tm_id = Home.tm_id
INNER JOIN Teams AS Opp
ON Games.gm_oppid = Opp.tm_id...
Can you help me out on what that looks like? I've never constructed an SQL statement that joins the same table twice. I'm looking for gm_homeid and gm_oppid with tm_div and tm_conf for both gm_homeid and gm_oppid. Thanks a million!
I hope this is simple. I have a sports database with a table for teams and a table for games.
Teams
tm_id
tm_name
tm_conf
tm_div
Games
gm_homeid (maps to tm_id in Teams)
gm_oppid (maps to tm_id in Teams)
gm_date
gm_homescore
gm_oppscore
What would a query look like that will give me the conf...
Thanks Chris. This looks like it is designed for client to server file uploads. Any idea on server to server using a server object like winhttprequest?
Hello All. I've been working on this for a few days now, scouring the internet and this site for some solutions. I need to be able to move a PDF from one ASP server to another ASP server (not client to server) using HTTP POST. FTP is not an option becuase I need a synchronous transaction with...
I have a div element that automatically stretches with the width of the window. How do I place one piece of text on the left and another on the right of that div element. Do I need to nest two div or span elements in there?
Thanks in advance.
ToddWW
I like to use my own properties in certain elements then be able to access them using document.getElementById(). It works great in IE, but not Firefox.
<div id="mydiv" fileType="pdf">
var v1 = document.getElementById("mydiv");
alert(v1.fileType);
I get an alert window in IE with "pdf". In...
I have an onload event in an iframe element and I'm preloading with about:blank. The onload event fires in both IE and Firefox when the parent document loads. When I use javascript to change the src of the iframe to a PDF document, the onload event fires in Firefox but not IE8. When I load...
Thank You Olaf. It didn't solve my problem but it made me realize I was setting up my indexes incorrectly all these years!! Yikes!! So I guess, in the long run, it did solve my problem. Thanks again.
I have been working with FoxPro since v3. Currently working with VFP 8. I have a database with one table that has a primary key and a second table with a regular key. I create the join and click the button to modify the referential integrity. All three (insert,delete,update) default to...
I've been using stored procedures in VFP 7 using the following steps.
OPEN DATABASE fbdata1 SHARED
MODIFY PROCEDURE
With VFP 7, I could write procedures, etc... and call them from my ASP web pages. Everything would work great. After making any changes, I could just hit File / Save and the...
Currently I have several computers on a 10.10.10.x network. On one of them (10.10.10.7) I have a dialout PPTP VPN connection configured through "Network and Dialup Connections". When I make the connection to the VPN host, everything works and I can access the resources on that remote network...
Or can I load the movie into a different level? I still need the two movie clips to be able to talk to each other. For example, I need a button in the main .swf to be able to manipulate the intro .swf
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.