I have a very simple page (www.coolsubic.com/darts/darttest.html) which has a 2 section frameset. The top (header) is my logo and javascript links menu, the...
Hello, I have an index.html file as follows <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <title>Career OneStop...
Try posting your page again, there's something very wrong with what I'm seeing in the e-mail - e.g. closing </script> tags, but no opening <script> tags; a...
Not from JavaScript. You need server-side facilities such as ASP. If it's local, on a Windows PC, you'll probably use IIS and ASP. Google will find you lots...
You can use the window.scrollBy() or window.scrollTo() method to do this. Each method takes two arguments, representing horizontal and vertical distance in...
Burak, The big trouble here is that you don't have matching <script> and </script> tags, and some JavaScript is outside of the tags. Correct this before trying...
I have two JavaScript questions: 1: Is a way to get the xy coords of some IMG or DIV element that have the attributes 'top' and 'left' as 'none'? 2: How can I...
1. Try the offsetLeft and offsetTop properties. Note that these properties are obtained relative to the parent element. 2. The collections returned by...
... I got your meaning, thanks Jon. When I went to try it out, I realised I was asking a dumb question :( I have a 2 frame window (a header and a body). The...
Hi Guys, I have this code: if (h_ini < h_end) alert ('h_ini is smaller than h_end') else alert ('h_ini is greater than h_end') both are numeric, but if h_ini =...
You can be sure that both aren't numeric. At least one (h_end) is a string. The string certainly has digit characters in it, but that doesn't make it numeric...
if(n == parseInt(n)) -- will permit type conversion (e.g., n = "32" will return true) if(n === parseInt(n)) -- will enforce strict type checking (n = "32" will...
when i submit the form, and then click back button in the next page, i go back to the cleared form. how to repopulate form data after user pressed browser's...
I have a compiler script that lists a log of things. how can I make it stay at the bottom of that page as the list gets longer? Matthew Kemmerer Mattsoft.net...
... First, thanks about your help. I'm trying to do some like that: for ( my_element in element_group ) { my_element.getAttribute('id'); } Like a interator...
Hello friends, I would like to clear some doubts in JavaScripts. In a page i have 3 selection boxes A,B,C..... A----1 2 3 4 5 B---a b c d e C---- I J K L if...
I have a form where I have a list of SELECT options. I'd like the next set of SELECT options to be based on the first. IT's a recipe contribute form, so if I...
hi am beginner with JavaScript & i have bg problem i cant handle it & need help or solve for it i have form in it four dropdown menus & i want make action by...
Thanks a lot. My question is about the use of (for...in), in Python I use that with interator objects. Now I know that it is impossible with JavaScript....
can i connect by Java Script to my DB & show on dropdown menu on form as i want after in the 1st dropdown menu when i click on anything in it , its get me the...