15,688 Topics
![]() | |
mouseovers work fine in FF, c, o & s, but not in ie8. Why? [CODE] <!-- Based on changing temp11e.php code to produce html from b7b.php in this script 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> <meta name="description" content="Save money" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> … | |
Hi, I working jsp project and here I want to some value at page load event which is returned from servlet. So please tell me how to get this value in javascript method from servlet. Thank's | |
hi.. in my project online bus ticket booking there is a jsp page of bus structure in which there are three images used. one is for selected seat,2nd is for booked seat,and the 3rd one is for available seat. when i click on available seat it will convert in to … | |
Hi guys, I have a problem. When i want to logged out from the system or close an account etc i want to display this message.[B] " Are you sure you want to logged or something like" and "Yes and " No" buttons[/B] are there. How this can be achieved?? … | |
:) hi there daniwebies, can anyone have a sample of source code on reloading two frames in a page by a link? [php|javascript] - setup is frame[one] and frame[two] is both located to index.php - frame[two] have the link [[U][COLOR="Green"]reload page[/COLOR][/U]] - clicking frame[two] reload link should reload both frame[one] … | |
i want to control print setting throught jsp or javascript set landscape when clicking on print button directlly plz any support appreciated! | |
Hello I am new to actionscript and i didnt know which forum to post in and may someone plz guide me to the right on. I want to play a simple animation in actionscript 2 and I keep getting an error Here is my code: [code=php] import flash.events*; stop(); dude.stop(); … | |
[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> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Simple</title> <script type="text/javascript"> function showHide() { if(document.getElementById('Checkbox1').checked) { submit.disabled=false; //document.getElementById('submit').disabled = false; } else { submit.disabled=true; document.getElementById('submit').disabled = true; } } </script> </head> <body><h3>Online Application Checklist</h3> <p><br /> <br /> Please review the following … | |
Can anyone tell me how or what's the JavaScript code to perform the following: 1. I have two frames on my web page. (Top and Bottom) 2. Top Frame is data 3. Bottom Frame are some Controls. (Print button, Back Button, Close Button.) 4. I'm using VB.Net creating aspx pages. … | |
hi all, i followed my first AJAX tutorial on the web: [url]http://www.dhtmlgoodies.com/index.html?whichTutorial=ajax-basics[/url] the AJAX is working fine on the site itself, but when i download the source codes provided with the tutorial, it won't run from my machine. i checked this with several tutorials and all same. i.e. no results … | |
im in a bit of a trouble i have a drop down list which contains various items,on selection of one of a item,a text box and submit button appears,for this i have used javascript and div tag.now i want to enter the no in that text box and on submitting … | |
Hi, I have set of html pages that are installed locally on machine. I want to make ajax call to local files. In Firefox everything works fine. IE is able to load html pages through ajax call but not able to load xml document. Chrome doesn't support ajax call locally...and … | |
Hi, I need xml data to be used in javascript. When I embed the whole xml in html page then I am able to access xml. But when when I use src tag I am unable to get xml file. Code is below: XML Data island in html page. [CODE]<xml … | |
this is my function which is calculating values. But if any of the values is empty it does not calculate the total payment value. if there is any simple way to calculate pls let me know [CODE]function startCalc(){ interval = setInterval("calc()",1);} function calc(){ room_charges = document.ipd_bill.room_charges.value ; lab_charges = document.ipd_bill.lab_charges.value; … | |
i am new in js and i have a problem on auto click a link..after the slide show of the images i want to auto click the last image, is it possible? this code below that i have search it redirect the link without showing the image slide show.. [CODE] … | |
I have a javascript test function to determine if items have been entered but it appears that the function never completes, it runs the for loop but not the items after it??? I can produce a screen capture video of the events that happen, contact me and I will send … | |
Hey guys this is kind of a JavaScript question but the script works elsewhere so I have a feeling it's got something to do with the fact it's being echoed by php. Can anyone tell me why this isn't working: [CODE] if (($_SESSION['count'] % 5 == 0) && ($_SESSION['countView'])) { … ![]() | |
I'm having problems getting this button to work here is the HTML [CODE]<head> <script type="text/javascript" src="Objects.js"></script> <title></title> </head> <body> <form> <input type="button" value="Go Searching!" id="work_car" /> </form> </body> </html>[/CODE] And here is the JavaScript: [CODE] function car(seats,engine,theradio) { this.seats=seats; this.engine=engine; this.theradio=theradio; } var work_car=new car ("cloth","V8","Tape Deck"); b1.onclick=work_car(){ document.write=("I want … | |
I'm trying to create a dynamic menu using jQuery, so I've built a basic one and I'm having problems making it look more impressive. At the moment, I can click on an item and the contents will be displayed above the rest of them. I want the content to slide … | |
hi i have two listbox that contain values in its list and from two diffrent table when i will select any value in first drop down box than second listbox will automaticaly load all related valus of i.e +---------------+ ! ---select--- ! !_______________! +---------------+ ! ---select--- ! !_______________! see it … | |
Unable to redirect to the page using window.location of javascript for the code given below [CODE]<script language="javascript"> function confirmation() { var answer = confirm("Do you want to add more Bussess?") if (answer){ } else{ alert("Thanks for using Bus Entry form") window.location = "adminHomePage.jsp" } }[/CODE] Anyone can tell me the … | |
Hi, I've been trying to get my webpage to send data via java script, AJAX, xmlhttprequest. i'm using IIS7 It definitely is the write path and stuff because i do get a responsetext but the response returns the entire php code in that file. Does any1 have any idea what's … | |
Hi, I'm fairly new to javascript and am trying to figure a relatively simple thing out. I have two drop-down selectors I want to display, one that lists countries and one that lists cities in the selected country. I want it to be the case that on changing the country … | |
here is the java script where i used window.close() function but it's not working. <script language="javascript"> var answer = confirm("Session expired! Want to go to the home page?") if (answer){ window.location = "index.jsp" } else{ window.close(); } | |
Hello everyone, i'm using jQuery datepicker with the weekselector like this: [CODE]$(function() { $('#startPicker').datepick({ renderer: $.datepick.weekOfYearRenderer, firstDay: 1, showOtherMonths: true, rangeSelect: true, minDate: '+1d', onShow: $.datepick.selectWeek } ); });[/CODE] what i would like to achieve is to only show weeknumbers, i need a weekselection only, does anyone know how to, … | |
Hi All, AJAX beginner here... 1. I have a function in .js that creates and gives me xmlhttpRequest-object. It works fine when I call it from a few .js files of my project, but has just started returning null value to a call from one of the .js files which … | |
Hello All, I have one Requirement that when user clicks on any point on gmap there will display route between that path. if User clicks on 5 points then on gmap route between that 5 points will be displayed. Thanks. | |
Hello DaniWeb kings and queens - Here is a simple jquery .animate block here's the code: [CODE] <!DOCTYPE html> <html> <head> <title>TestingJ</title> <meta name="description" content="Mseed Web Design" /> <meta name="keywords" content="web design, programming, scripting" /> <meta name="author" content="Eric Karen" /> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="/css/global.css" /> <script … | |
Hi Im trying to make a script which when I click on the list element... it will replace a big image with anotehr picture. The list element is a thumbnail... and I want to swop the big image with the big version of the thumbnail. Each <li> has a rel … | |
Hello, I have a search engine that I've created. It searches my MySQL database, but I was wondering how do you make it so it won't refresh the page? This is my form.php [CODE]<?php global $search_term; global $location_term; ?> <form action="index2.php" name="form" style="float:right;width:650px;height:60px;margin-right:30px;" onSubmit="return searchLocations();" > <table style="float:right;"><tr> <td> <label … |
The End.