I'm new to this and I thougt I was doing it right, but, I get no printout to the screen. ANyone have any ideas?? Thank you <script type="text/javascript"> /*...
The Covering Div approach might be a good solution, just that in order to get it to work properly, you need to attach events to the resize and scroll events in...
There's 4 mistakes. All of them are simple typos. Two of them are identical, and result in unterminated strings/broken tags. (Looks like a copy/paste muckup.) ...
Nice! I’m not using jQuery but I can imagine that script using straight DOM. The other approach: Where should I attach the resize and scroll events? To the...
I do know for sure on both of these document.write("<ul>">"); it should be document.write("<ul>"); as there was extra >" I do not know if that will make a...
Hi, You need to attach it to the Window Resize and Scroll events. One thing to note though is that if you use IE and have drop down controls (<select>tags)...
I am trying to create a cookie on this form to recognise the user. I nested the setCookie function in the validation scripts and then set a checkCookie...
hi, i'm rena.. i'm just newbie.. i have array like this... Â var itemList = [ Â Â Â Â Â Â Â [1,'itemNo1','itemName1',10,0,'dept1','true'], Â Â Â Â Â Â Â ...
There were some syntax error in ur code. First: quotation closing error ("") in <ul> tags. Second: spelling mistake in 'javascript'. Third: function...
Just a quick glance before I run out the door to work ... ... This will cause the validate function to end. It won't get to setting your cookie. If the...
Hi, Tim's method is the simplest but there are other ways as well. You basically have an array that contains other arrays as its elements. So you want to do a...
Iam writing the code in HTML bother client and server script, the code exactly from www.W3Cschools.com.The examples work on the internet from their web pages...
There is this AJAX issue Iam getting the server script content as response instead of the processed result of the content. For example, for code in the first...
Is your Ajax code pulling (or pushing) information on the same site or from an external site? I was having problems with a script that was pulling information...
Hi, I am a novice javascript programmer, and I'm trying to create a website for my son. Right now, it works in Firefox, but not IE. If you click on a...
I think JS is the solution... I'm building my own photo website - the photo gallery structure is a main image area with a 5 row x 2 column thumbnail section -...
Hi, In one of HTML page we are using the following code.. function SetTTL(TTL){ window.external.OK(TTL); } This code closes the current window and passes the...
I am trying to target an html frame with html content when there is no mouse or keyboard activity. This is not working for me <script language="javascript"> ...
Here is the problem. I want to make my first web page to open at full mode, i mean, that use all screen. For example, if i go to hotmail.com i want it to...
I need to write a javascript that can detect no keyboard or mouse activity, if so then call a function that will load new html web page into an html web page...
This is not as simple as you would think. In the body tag, specify an onLoad handler that starts a down timer. Every element must have one or more event...
If you are talking about forcing the user's browser to full screen, then don't do it. It's their browser, not yours. Create your web pages so that they are...
Not without seeing your code. Regards, Dave S ... From: "Jack Straw" <jkernix@...> To: <JavaScript_Official@yahoogroups.com> Sent: Sunday, October 19,...
Howdy, In coding some java to determine window size so I can present the correct resolution photos, I display the window size on the web page. Issue is I don't...
hi, Yes, You can Do it as simple as below : Get users resolution by : var a,b; a=window.screen.width; {returns width resolution of the screen e.g 1024} ...