This has stumped me for the last couple of hours and I was wondering if anyone else could shed some light... I have a page which loads some cookies, when taking the value from the cookie it defines whether a checkbox should be ticked or not. This works if the value of the cookie is true but not if the value is false and it ticks the box anyway. The code is....
var widgetVal = loadCookie(widgetName);
switch(i){
case 1:
document.getElementById('calender_widget').checked = widgetVal;
break;
[Code]...
i is incremented each time in a for loop and a different cookie is loaded each time. As I said the code works if it set to true but not false however if I remove the variable and specify it as false it works.
i need a javascript for my checkbox1st: need to check the checkbox to go to next page or else stay at current page with an alert popout "Please check the checkbox"
I'm getting a value from the database either true/false. I have a alert box that shows it being true/false. I want a checkbox to be checked if true else not. Here is the line of code that I have and it just automatically checks everytime, which I obviously don't want.
Have an issue with using $.ajax for requests. If I set async: false it works fine, but sometimes gets cached content. If I add in cache: false then async doesn't work anymore, the next ajax request gets called before the first one finishes.
I have a JSP page that calls a javascript function located in an external js file.
The js file is included to the page using the following code:
The script folder is located one level above the JSP page. I also used src="../scripts/javascript.js" for the source attribute and it did not work either.
When I moved the called function to the calling JSP page it worked fine.
So, the weird thing is: it only fails with IE7. In IE6 it works fine.
I'm making a simple color code chart that when the user clicks the button, it alerts the color code, but javascript wont recognize the color code. Could someone please help. Here's the code:
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title></title>
I have a series of videos which must be loaded dynamically on their pages which then get loaded into an iframe. I need to be able to load these videos using variables for the width and height. It's imperative that I use variables as the sizes of the movies will be determined by the user's resolution.
Here's the code I'm currently using <script type="text/javascript"> var dimW = screen.width; var dimH = screen.height; var w1 = dimW.toString(); var h1 = dimH.toString();
I'm developing in xhtml so naturally, IE doesn't recognize the document.write statements and the page comes up blank in IE. It works flawlessly in FireFox (as expected). So, I need to replace the document.write statements with something else while still being able to pass variables for the movie objects height & width.
I've tried this code: <script type="text/javascript"> //alert("The beginning"); var dimW = window.innerWidth; var dimH = window.innerHeight; var w1 = dimW.toString(); var h1 = dimH.toString(); ..... document.getElementById('mediaPlayer').appendChild(theNewMovie); </script>. I then have a <td> with the id of "mediaPlayer" but nothing is showing up. Most likely because I'm still fairly new to javascript and am probably forgetting or overlooking something.
I am working on my personal portfolio site, and am using a code that will make each portfolio piece appear in a new div when the name of the piece is clicked on. The problem is, JS does not seem to recognize double digits. I am not familiar with JS at all, I just got comfortable with CSS/HTML a few weeks ago! I am in over my head. It would really.how to change the code so that I could make about 15 to 20 divs instead of 9. Here is the code...
I am making this drop down menu with several options depending on your choice. It works fine in FF but when I tried in IE simply won't recognize a Value. The window keep popping out even though you choose an option, this way won't let me go to the next step.
Here is my php code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
The xml tree is the responseXML part of an XmlHttpRequest and is stored in a the javascript object xmldoc. While trying to test the node type of the children of the "results"-Element I got different results with IE and Mozilla: Code:
alright, im working on a page that has a drop-down menu in it...it uses the onChange event to trigger the different links (only one at the moment, but still)...and now XHTML doesnt validate it as a recognizable attribute...so is there some way to somehow target the drop-down menu's onChange event from a separate .js file? heres the basic code:
I've always had this limitation when adding inline content using JQuery. Such as adding one more text field inline let's say. Basically, if I had defined some code related to input fields outside the scope of the function that adds the inline code, this new input field will not recognize it.
Something like
Code:
However, Ive always solved it by adding the click event another time after the code in placed inline
Code:
But I'm trying now to avoid this repetition, how is it possible?
I have a form, with a submit button. Inside this form i have one input text field, in addition to an add more button to add more of that input field using JQuery .html(val);. Now the issue appears when I submit the form, all inline added input fields are not recognized, they are not set and there is no data for them in the POST.
I've been working on a project for some time now, and just recently I installed Firefox.
Now, part of the site (which works perfectly in IE6/7) doesn't work in Firefox.
Here is part of the code:
Code:
(I didn't copy all of the code because it's basically the same all the way down)
The main problem is with the link (Firefox apparently doesn't recognize table rows as links). The second problem is with the onmouseover/onmouseout etc handlers (absolutely nothing happens).
just in case you need to know, the code is for a nav bar.
Cycle plugin displays horizontally my vertical photos (photos taken with my camera in portrait position).The same photos are displayed vertically (the right way) by other imaging applications (e.g. Photoshop and Finder or Preview in OSX).The same photos are displayed horizontally (the wrong way) by Safari and Firefox (IE not tested). Cycle seems to rely upon browser poor orientation recognizion.how to make Cycle Plugin aware of the right photo orientation?
I have two grids, they both display buttons. One grid displays numbers, true or false and yes or no, and the other grid displays letters, true, false, yes and no.
The second grid is not displayed in the code (used css to not display second grid buttons (.answerBtns)) Now using the getButtons() function, if the user selects button "1" in first grid (the grid which you have to open using (Open Grid) link, then it should display button "A" in second grid, if user selects button "2" in first grid, then it should displays buttons "A" and "B" in second grid, if "3" then display "A", "B" and "C" and so on.
Now except using if statements and stating which buttons should be displayed and not displayed depending on the button chosen in first grid, is there a more efficent way of coding this so that the display of buttons in second grid depends on what is selected in the first grid?
If it is using an array can somebody show a sample of this in their answer. You can just do it for one example and then I should be able to use that to fill it for the other buttons.