Hey, I've setup a local Fax printer on our Windows 2003 Server and shared that fax printer out so workstations can send faxes through it. The problem is, on the server I can configure dial rules through the Send Fax Wizard which works fine. On the workstations, I do not see the option to...
Hey, we've had no issues with InDesign CS3 until a few weeks ago. We currently have all our files on a Windows 2003 Server. At random times, when someone is editing a file, and then try to save it, we get this error message:
"The Network Connection was lost for file \\xxx\xxx or modified by .."...
Hey, we're trying to get a Lexmark X4270 to print through terminal services. Before I start trying to explain the situation I just wanted to see if anyone has had any experience with using a Lexmark printer through terminal services? They have drivers for Windows Server 2003, but in order to get...
Hey, heres one solution to this problem. The idea is to use setTimeout and closures. The setTimeout allows the browser to "breathe". Anyways, heres the code.
<html>
<head>
<script type"text/javascript">
function processfile(theCnt)
{
if (theCnt == 0) {
fso = new...
If I am understanding your question correctly, I had a similar issue come up in a project where I needed to fire the onChange event on a textbox after I changed the value through javascript. Heres a code snippet that fires the onChange event of a text box. Note, I've only tested on Firefox 2.X...
I believe BabyJeffy is correct. However, there are several javascript libraries that solve this problem using a hidden iframe and the URL hash. The Yahoo User Interface(YUI) is one library that solves this problem. You could look at the source code or use the library.
IE7
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="javascript" type="text/javascript">
function createAptBoxes() {
var curTop=0,curLeft=0;
var apt1start = "someTable";
//document.write("<div id='apt1' class='aptBox'>Start: " + apt1start +...
Hey, I modified your code a little but this seems like a simple way of doing it.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="javascript" type="text/javascript">
var curRowClicked = null;
function startHighlight(){
var navRoot =...
The reason that code works is because of closures. It is somewhat of a confusing concept but Google 'javascript closures'. Essentially, if you declare an inner function, that is, a function inside a function, the inner function has access to the variables in the outside function. Because of...
Hey, I think I understand the problem. You're trying to use a reference to a local variable in your innerHTML. When the function test(obj) finishes, that obj variable no longer exist, so javascript searches for a global variable of that name; it doesn't exist and thats where your running into...
Hey, here is a very basic, simple way of doing this. By no means is this complete but hopefully it will give you enough information to find a solution that fits your needs. I think you'll need to use the events rather than using onblur although there is probably a way to do it. There are...
First of all, I would strongly recommend not using eval as many experienced javascript programmers would advise. I'm not sure I understand what your saying, but it sounds like your trying to pass an object as a parameter to a function. In that case:
cell.innerHTML = '<a href="#"...
Hey, I think the first thing you need to do is get all the select elements. something like
// get all select elements on the page
var selectArray = document.getElementsByTagName('select');
Then once you have an array of all the select elements its a matter of looping through each one and...
Hey, what is happening is your Javascript is parsing before the actual koko element is attached to the DOM. In other words, your trying to get properties to something that doesn't exist yet. Here is a quick rewrite of your program.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"...
Hey, check out http://developer.mozilla.org/en/docs/DOM:table#HTML_Table_Element_Interface
Your looking for the method insertRow().
That's the DOM reference provided by mozilla with a lot of useful information. Give it a shot and see what you come up with.
Hey, it works ok for me. I edited some of your code, but here is what I had
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language = "javascript" type="text/javascript">
function makeCritEntry(){
var tbl
var tbd
var tr
var td
var ta...
Hey I had a similar issue. Here is an example file i had made. Note: I made this in Firefox 2.0. I am 99% sure IE has different way of handling events. If you use this approach you will need to do some research on it.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>...
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.