15,127 Topics
| |
Hi everyone, I am so new to javascript and it is really giving me a micrain. It looks easy but tend to be hard. Atleast for me since I am a beginner. I need help please. I need to make work with the element getElementById I have tried numerous way … | |
hello, i'm trying to get [URL="http://superiorminitrucks.com/admin"]http://superiorminitrucks.com/admin[/URL] login functionality to work. It's my first logon script, which was tested to work, but I'm running out of brute force to get this one through... [CODE]<?php //////**************************************/ // // LOGIN PAGE // // Server-side: // 1. Start a session // 2. Clear the … | |
It seems I have a choice, my menu item can follow suckerfish and change background color on hover or the document.submit() function can work. Not both. Any ideas about this would be appreciated. I have this bit of code for a menu option: [ICODE]<li><a href="#" onClick="document.getElementById('cf').submit()">Commit</a></li>[/ICODE] This allows the Commit … | |
Hi All I have been struggling with trying to post back a variable from an ajax page to another website using javascript, I keep getting the error "Access Denied". I have been researching on the web and have come across that javascript cant post data across domains. But both web … | |
Greetings everyone, On the [url]www.logicweb.com[/url] top banner (static), the live chat white circle image map area has an IE issue here. The live chat image map works fine in Firefox and Oprea but not in IE7. I believe its the # link. What can I do to the below code … | |
I need help positioning my sidebar on my browser. Every time I scroll down the sidebar follows down the screen causing me to lose half the info on the sidebar and only showing what fits in the screen. It has became a really pain in the @ss and I would … | |
hi to all my problem when i add form field dynamically to the page in java script (form method is get )it is well worked in IE but not working in mozilla fire fox problem is ,does not pass the form field element value to the url for the use … | |
Hello friends In my form I am using two AJAX functions.. Both are working fine... Problem is both are displying in one place..I want to display it in different locations... I used [code=html]<div id="txtHintGrade"></div> <div id="txtHint"></div>[/code] txtHindGrade for first [code=html]document.getElementById("txtHindGrade").innerHTML=xmlHttp.responseText; <span id=\"txtHindGrade\"></span>[/code] and txtHint for the second [code=html]document.getElementById("txtHint").innerHTML=xmlHttp.responseText; <span id=\"txtHint\"></span>[/code] … | |
Hello there I would like to ask you what general approaches you know to carry out the task of adapting the css which works well for firefox, to make it work the same in explorer or other particular browsers which might raise problems. For example, if you take a glance … | |
Hi all, I'm just wondering..... Is there any way to know what variables are associated to a given kind of data type or class (when using prototype for example)? Let me explain. if I have: // Javascript: var myVar = new Array(); var myObj = new CustomPrototypeClass(); So, in some … | |
I have a JavaScript that makes images float in the background as soon as you move your mouse pointer over the browser screen. I got this script from the maker of the old site, who I cannot contact anymore. The problem is that every time an image is about to … | |
Hi guys, I am using an area shape map to designate cooridnates on my page for my tabs. So that when I click on the tab "about us" it will go to the about us page and when I click on "contact us" it will go to the contact page … | |
i have created a page which has an iframe held on it i now what to post the data from this iframe and make it available to my other php page. I have researched this a bit and found out it can be done using javascript. the code i have … | |
I hardly have any experience in programming.... a bit with javascript. Now I am trying to make a form in which I want to force the input to be in a specific way. No special characters and only uppercase. I manage to get only 1 of those or uppercase or … | |
I have been working on a [URL="http://www.onboardcouriers.eu/verhoijsen/"]Wordpress theme[/URL] for some time now. I got a javascript from the original website. I import it into the Wordpress header.php. But it does not work at all. No floating images as I move my mouse. Nothing at all. Firebug gives me this error: … | |
Hi all I have a div elent like this [ICODE]<div id="content" style="width:200px;height:125px;overflow:auto;color:#000000"></div>[/ICODE] I fill the div with text dynamically and scroll bars appears. But I want to show tha latest data which fills the div with out scrolling (otherwise the user have to scroll to see the latest data ) … | |
My script resizes images (yes, client side! No, I dont have access to do it server side!) When a topic is posted with alot of images, The script sometimes resizes before all the images load, resulting in images loading after that which are not resized. How can I ensure the … | |
Hello there I am stuck with this problem. I know how to use the four graphics corresponding to the four states of the button (with curvy corners) which I want to use in a menu. Nevertheless, the problem comes because I want the length of my button to be variable … | |
Hey guys, I am trying to overlap some layers in html and I have done so using absolute positioning and it looks fine using internet explorer. BUT, when I try and view the page using Safari or Firefox, the layers are overlapped but not in the correct place. In other … | |
How can I link to another URL when my web page opens without clicking on "link"? I'm just learning html and understand how to link using the anchor and href. Example: [code=html]<html> <body> <p> <a href="http://msm/com"> Click Here </a> </p> </body> </html>[/code] How can I get my webpage to open … | |
Can a table written in HTML be floated as an element, as in image <img src=".."> I am trying to have several small blocks of text, seperated within borders that the text withing the box or group can float depending on screen size. I don't know how to do this: … | |
hello i have a project and must turn in a few days its abot java script.. if anyone have a simple simple codes or a finish project who can give it to me ... im talking about simple codes like window.prompt ... alerts.. background color .. images.. thanks [I]<<email removed>>[/I] | |
Is there a way in JavaScript to add a footer to the bottom of each page that says something like "Continued on next page..." when the user prints the document? I know that the footer is generally controlled by the client's browser, and am not trying to get rid of … | |
Hi, I want to show a login pop up window that has the username and password, I want it to be like the prompt. Can anyone help.... | |
hi there could any one solve this problem for me plzz..... In my site iam generating multiple textfields and i need to wite validation for that [CODE] function valid(){ for(var i=0;i<4;i++){ if(document.getElementById('d'+i).value == ""){ alert("not empty"); return false; } return true; } } [/CODE] [CODE] <form name="f1"> <input name="cc1" id="d1" … | |
this is what i am trying to do. Write a simple program that do the following: 1. Accept user input for date in format of (YYYY-MM-DD). 2. Validate YYYY, MM, DD are number. 3. Validate whether this input is a valid date. 4. Print a monthly calendar for the month … | |
I came across this script. I wrote it sometime ago. It writes out two different id coordinates. Just thought I would put it up. Right click for source its pretty easy to modify. [URL="http://www.stupidharold.com/Dani/mouseover4.htm"]http://www.stupidharold.com/Dani/mouseover4.htm[/URL] | |
Hi, I have created a website that has a page where you can drag layers around to different areas on the page. Is there any way that I can find the new coordinates of a layer after I drag it? What I ultimately need to do is store the coordinates … | |
Hi everybody, I am using a java script function which redirect to the page according to the given parameter, and it is working as desired in IE, but I found that it not work with Firefox browsers, so some one plz guide me how it is possible to have the … | |
Before uploading files via a HTML-form, I want to do some client-side validating. E.g. to check the filesize of the file selected by the user to upload. Filesize should be,say, between 5MB and 50 MB. My 'feeling' says there should be such an instruction in Javascript, but I can't find … |
The End.