15,120 Topics
| |
i am trying to append more than 2 variables in URL using location.href in javascript. Here is the code: [code]location.href='Add_New_Project.php?project_name=' + project_name + '&cat=' + val + '&prj_desc=' + project_desc;[/code] The page is suppose to refresh when the code executes, but it wouldn't. Whereas if i try it with only … | |
Hello all . I use this code roughly to call some php code then run it in an html container. [CODE] function getVote(int) { if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 … | |
Hi all again, i have read tutorial about javascript classical inheritance [B]Douglas Crockford[/B] wrote. But i did an example for the reason practizing as it showed in his page [URL="http://www.crockford.com/javascript/inheritance.html"]http://www.crockford.com/javascript/inheritance.html[/URL] for ex i did the following example. [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" … | |
I am working on improving the visual appeal of table rows. The data in table rows is generated dynamically and has lots of information. There is a column in that table which gives the time when that particular information row was issued. On the basis of the days/months etc before … | |
Hi, I have this jquery slideshow but no navigation. at this point the navigation is numbering 1 2 3 (according to the number of slides). I would like to change it to button nav as attached. Can anyone help me edit the JS file or show me how to (I … | |
Hi all, I have taken tutorial from net. but i didnt understand one thing correctly what does this [CODE] done:function(f){ postaction=f || postaction //remember user defined callback functions to be called when images load }[/CODE] and what does || sign mean there. Thanks for attention! here is [CODE]function preloadimages(arr){ var … | |
I'm kind of a newb to javascript, so bear with me. I'm working on a site for a college javascript class, but I want to do a little bit more with my class site. I have a very simple slideshow set up( as a pop-up), but I want the images … | |
I have a basic question regarding javascript, i need to generate the time table of input number, here is the question have a look at the attachment I'm not achieving the desired output , please help me out, here is the code but it isn't working please provide me with … | |
Hi, I am currently learning Google Maps API V3. I want to display an infowindow for each marker on a map and I have written two codes snippets doing the same thing, yet producing completely different results. Version A: Successfully displays an infowindow for each marker. I tried to do … | |
hii friends i am trying to create a drop down menus in which my 2nd menu will depend on 1st one ...and 3rd on 2nd and so on til 5 dropdown menus. for eg if my 1st menu contain India US Canada and then suppose i select Canada then my … | |
Hi, I am attaching a side banner image. I would like that image able to switch it's text automatically or whenever the user press the small white button. Anyone has any idea how to do so ? or any recommended tutorial to create such things ? Thanks. | |
It performs the toggle function to change the class of the paragraph tags and reverts back to the default class name when user rollout of it. You can embed the CSS style code inside the Head section of your page using HTML style tag. Code is as follows : | |
hi I am new to AJAX.I am trying to refresh a part of jsp page so that it goes to another jsp page autoamtically after few seconds but i am unable to do this,it remains on the same page and does not get refreshed.Can u please check my code. [CODE] … | |
hai everybody am new to jsp am using following code to check the value entered in text box with some maximum value. if it's greater then the maximum value i need to display error div instead of alert box.please help me. var max=document.getElementById("max"); if(max.value !=" " && max.value !=null && … | |
I want to create a sheet where there is a few math problems. Example: 1+1 or 2+4. And then below it is a box to fill in. You fill in the box and it pops up with a correct or wrong error. At the end, I would need to show … | |
Hi my problem is that I have a slider that is triggered on an onlick event, on document ready. In all other browsers this works great. However in IE, you click the link and it turns to visited, then click it again and it works. After this it works first … | |
hey guys, I have a problem here. I wish to generate 1 pop out date function. below is my code of javascript..but still I cant get any pop out after I click my textfield..guidance needed...ty [CODE] <link rel="stylesheet" type="text/css" media="all" href="jsDatePick_rtl.min.css" /> <script type="text/javascript" src="img/jsDatePick..min.1.3.js"></script> <script type="text/javascript"> window.onload = function(){ … | |
I saw this script but wondering if this is possible using div instead of image which maintains the ratio whether you adjust browser height or width [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=utf-8" /> <title>maintain height and width</title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script … | |
Not sure if this can be done in php or whether I should look at other alternatives. I'm trying to access 4 different sources of data to put on one page - Amazon API, Ebay, our sales data on one server and our inventory data on another server. (Historical reason … | |
I am trying to create a web page for people with maladies of the hand. They have great difficulty with the double click. I want to be able to drag the links on my page to a "drop bucket". When dropped, the page should navigate to the link destination. Basically, … | |
hi, i need to empty all the divs whic has an id like 'bkoption' eg : my html code is like this [CODE] <div class="subsubsubmenu" id="bkoption1">some content</div> <div class="subsubsubmenu" id="bkoption2">some content</div> <div class="subsubsubmenu" id="bkoption3">some content</div> [/CODE] so when i trigger an on click function i need to empty all of … | |
I'm kind of new to JavaScript, I know the basic syntax and how it works but I've been hit with this problem that I can't seem to solve... I use the following code to call a file which gets the RSS feed from one site. [CODE] <html> <head> <script type="text/javascript"> … | |
Hey all, I am in the beginning stages of developing a new site for a local Chamber of Commerce, does anyone have any interactive mapping ideas? The map will includes various items like lodges, hotels, landmarks, etc. I REALLY like Mapquest's functionality but want their Vibe api, however I don't … | |
Hi there, I am reading a javascript book and I got a little stuck when analysing one of the scripts built as test. This is the one I am talking about [url]http://aharrisbooks.net/jad/chap_08/bounce.html[/url] I went through it but I don’t seem to be able to understandexactly the way it works. Here’s … | |
[CODE] $query = "SELECT item, description, price, imageData, status, username, item_id FROM items"; $result = mysql_query($query) or die(mysql_error()); $z=0; while($row = mysql_fetch_array($result)) { //echo other columns here// echo "<td><div id=status$z></div></td>"; <script type=text/javascript> function updatestatus(itemnum) { var url="updatestatus.php?auc=<?php echo $row['item_id']; ?>"; jQuery('#status' + itemnum).load(url); } setInterval("updatestatus(<? echo $z?>)", 1000); </script> <? … | |
I want my links to work under My works when JavaScript is disabled. If someone could lead me in the right direction it would greatly be appreciated. Thank You Here is the testing site: [URL="http://illcomputers.comyr.com/portfolio/"]http://illcomputers.comyr.com/portfolio/[/URL] JavaScript and Ajax: [CODE] <script type="text/javascript"> <!-- function show_div1() { document.getElementById('free').style.display = 'none'; document.getElementById('ill').style.display = … | |
Hi all! I have this code. Everything works fine except "setTimeout..." function. It's supposed to repeat this function every second (and change the age). Can someone, anyone, help me? Thanks a lot! [CODE]<script type="text/javascript"> function parseDate(input){ var parts = input.match(/(\d+)/g); return new Date(parts[0],parts[1]-1,parts[2],parts[3],parts[4]); } function calculate(){ var date = new … | |
Trying to figure out why this SIMPLE math function will not work. If anyone can help me that would be great....Thanks [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=utf-8" /> <title>Calc Price</title> <SCRIPT LANGUAGE="JavaScript"> function doMath() { var one = eval(document.theForm.elements[0].value) var … | |
I was curious if making a javascript alert a PHP mail form and would send with that. Would it be possible, and would it be secure from email harvesters? Thanks! | |
i was able to find a good script on centering a div vertically but not compatible on ie old browser and another issue my div is pushing up because i have a footer and i dont know how to adjust on script adding a top border :( [CODE] <script type="text/javascript"> … |
The End.