15,116 Topics

Member Avatar for
Member Avatar for Moderns

Hi, anybody can tell me please how to Get xmlHttp.responseText when you call from IFrame? I get empty xmlHttp.responseText, while when calling server from out the IFrame, I get the responseText without problem, how can I solve this problem? Thanks. [CODE] <iframe> <input type="button" onclick="CallServer()"> </iframe> [/CODE]

Member Avatar for Moderns
0
288
Member Avatar for toplisek

Input field is filled but not submitted... Validation: [url]http://jquery.bassistance.de/validate/demo/[/url] Ajax/Jquery based variable from input field. If there is Name (required, at least 2 characters)it should change content (text) with Full name like Mr. Luck Murphy. How to do this in correct way as there is already validation Javascript: <script type="text/javascript"> …

Member Avatar for toplisek
0
154
Member Avatar for HelenLF

I have a page where there is a div which is set to 100% width and height and which has a black background. This div covers the main content and after a delay fades, revealing the page content. The problem is that I also have a script which adds stars …

Member Avatar for Airshow
0
99
Member Avatar for hsmroz

can any one help me wright the code for any simple java games, choose one from the selection below plsss (using jav -Base Conversions -Lotto 649 -Mastermind -Hangman -Deal or no -Deal -Who Wants to be a Millionaire -Card Games -Theatre Seating -Morse Code Instant/Fortune Teller -Pay Stubs -Educational Game …

Member Avatar for Ezzaral
-1
737
Member Avatar for Tenaciousmug

[CODE]$(document).ready(function() { $(".alert").click(function() { { var id = $(this).attr("id"); alert(id); $(id).dialog(); return false; } }); });[/CODE] Ok it's alerting the id AFTER it alerts an undefined.. so it alerts "undefined" and then "5" or whatever the number may be. What am I doing wrong?

Member Avatar for fobos
0
204
Member Avatar for ajcoder

I have an assignment and need to fix this code. I have gotten to the point of not having any errors on my page for html, but need help with the javascript portion. I also want to understand the changes and why. I only need to make changes to the …

Member Avatar for ajcoder
0
199
Member Avatar for mmazeemahmad

I want to just bold and underline the (anchor) link when it was clicked with the help of jquery....But didn't know of how to do it.... Here is my code: [CODE] <script type="text/javascript" language="javascript"> $(document).ready(function () { $("a").click(function () { alert("Hello"); // $('.body_text').css('width', '100px'); // $('.body_text').css('text-decoration', 'underline'); // //this.addClass('makebold'); //$(this).toggleClass('makebold'); …

0
77
Member Avatar for mucokirca

i want my ajax and php codes, with 2 option value, show up two different texts or form packs. i have given html and php codes. i hope sombedy help me. im quiet new with this. thanks :) renkler.html : <head> <script type="text/javascript"> var istek = false; if (window.XMLHttpRequest) { …

Member Avatar for McLaren
0
319
Member Avatar for Ehtesham Siddiq

hi, I want to move a button to new location at the mouseOver event in JavaScript.. Please have a look at my code below. [CODE] function move() { b1.style.position = "relative"; setTimeout(b1.style.left = 100,1000) } <input type="button" name="b1" value="click" onmouseover="move()"/> [/CODE] Im able to move the button to the new …

Member Avatar for stbuchok
0
175
Member Avatar for divsok

i'm novice to this and can anybody say how to change CSS properties with javascript functions? how can i change font-sizes/font styles using a combobox represented in a textarea? [img]http://i.imgur.com/KH0om.jpg[/img] if you can show me how events working..thank you

Member Avatar for Troy III
0
336
Member Avatar for anish.anick

Hi All, I want to resize the html controls and elements (buttons,text,div's images..) when the browser window is resized using mouse.. Is it possible to achieve that? Please help me to solve this issue? Thanks

Member Avatar for AleMonteiro
0
107
Member Avatar for lifeworks

Hi Ive been fiddling with trying to emulate classes in javascript - but currently getting an undefined error hen I click one of the vote buttons... Ive got two vote buttons, 'vote_positive' and 'vote_negative' and have cretaed two vote button objects... on construction they firstly assign a value to the …

Member Avatar for stultuske
0
168
Member Avatar for Pravinrasal

I have created one application in JavaScript. And i have created logic gates(e.g AND,OR,NOT) and I displayed these gates on on particular grid background but when I drag and drop these Gates on grid , the borders of gates and lines are not matched to the background grid. So how …

Member Avatar for Airshow
0
244
Member Avatar for toplisek

I have link with e-mail like: <a href="mailto:no-reply@mydomain.com">My e-mail address</a> When clicked on link it should do two tasks: 1. PHP SESSION variable: $_SESSION["var"] = "no-reply@mydomain.com"; 2. Live Ajax value to publish at form As there is stored value into session $_SESSION["var"] = "no-reply@mydomain.com"; there should be Ajax based SESSION …

Member Avatar for AleMonteiro
0
132
Member Avatar for vb.net_beginner

As part ogf my studies I am now looking at JavaScript and am working on a project that works similar to a slideshow where an image is loaded and then changes every 7 seconds. Having successfully achieved this using my limited knowledge I now need to add various bits of …

Member Avatar for vb.net_beginner
0
215
Member Avatar for kutchbhi

The following sets a keydown event, preventing further input when a condition is achieved. [CODE]<textarea rows="5" cols="30" onkeydown="return checkLength(this)"></textarea> <script type="text/javascript"> var maxLength = 30; function checkLength(elem) { if (elem.value.length == maxLength) { return false; } return true; } </script> [/CODE] IN the above I don't understand this part: onkeydown="return …

Member Avatar for Troy III
0
122
Member Avatar for maxxxx

I'm getting an error in line 13 and don't know why. Can someone help me please? [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>Untitled Document</title> <script language="JavaScript"> function popUp(URL) { eval("page" + id + " = window.open(URL, '" + id + …

Member Avatar for Airshow
0
199
Member Avatar for Pravinrasal

hi, I developed one web application and I have created div in JavaScript and on that div I have created more than one images and when I click on save button i want to save all images on to the database and when I retrieve that image from database as …

Member Avatar for stultuske
0
193
Member Avatar for z3o

I got this error while trying to view my websites on Chrome after reformatting my OS (Windows Vista Ultimate 64bit). I noticed I cant view my adsense ads from my laptop, but I can see them on iPad, so it might have something to do with my Google Chrome browser …

Member Avatar for Airshow
0
515
Member Avatar for vizz

Following is my code of menus which i include on each page like this, [CODE]<?php include('menu.php');?>[/CODE] [CODE]<script type="text/javascript" language="javascript"> $(document).ready(function() { $('ul#navlist a').click(function() { $('#navlist .active').removeClass('active'); $(this).parent().addClass('active'); var linkz = $(this).attr("href"); alert(linkz); return false; }); }); </script> [/CODE] [CODE]<ul id="navlist"> <li class="active"><a href="index.php"><span>Home</span></a></li> <li><a href="portfolio.php"><span>Our Work</span></a></li> <li><a href="services.php"><span>Services</span></a></li> <li><a href="request.php"><span>Submit …

Member Avatar for vizz
0
180
Member Avatar for edn_781

Please help me: My code is going into an infinite loop after clicking on a link. Here is my Code: [CODE] <html> <head> <title>Assignment</title> <script language="javascript"> var records_per_page = 5; var total_records = 35; function pagination(current_page){ var initial_page = 1; var total_page = 0; var page = ''; if(total_records % …

Member Avatar for Fest3er
0
145
Member Avatar for kaosjon

i am currently trying to add a uploading/scanning screen to my file upload site, (just to be clear i need the 'design' part of it, like actually displaying the box not anything to do with the scanners, or implementing the scanners, just a box that says scanning with a scanning …

0
122
Member Avatar for vb.net_beginner

Hey Folks I am just starting out with JavaScript and am following the resource book for the course I am on. One of the exercises is to write an external JavaScript as below which produces the following output: Power is Off Number is Ten the problem is that I am …

Member Avatar for vb.net_beginner
0
64
Member Avatar for vb.net_beginner

Similar to my last post one of the exercises is to write an external JavaScript as below which produces the following output: Iteration number: 1 Iteration number: 2 Iteration number: 3 Iteration number: 4 Iteration number: 5 Iteration number: 6 Iteration number: 7 Iteration number: 8 Iteration number: 9 Iteration …

Member Avatar for vb.net_beginner
0
79
Member Avatar for cjohnweb

Overview So I've got this site I've been working on for months. I thought I had it all figured out. But then I Google'd for my site, and clicked a link, and the same functionality does not work. Details Site: [url]http://whentoplant.com/[/url] Walkthrough - Everything seams to work Ok, lets walk …

Member Avatar for cjohnweb
0
186
Member Avatar for jchoudhury

Sorry for the basic silly question. But I really dont have any idea on solving this. I have ASP controls (One Text Box and One Drop Down List). Now I need to access [B][I]value [/I][/B]property of TextBox as well as [B][I]SelectedIndex[/I][/B] property of dropdown list. This should be as simple …

Member Avatar for Airshow
0
130
Member Avatar for suhaildawood

I am having some trouble with this code. I want have an onclick function on a div and I want to call this function. Only the 'if' section of the code works. If the #about opacity is anything other than 0.47, it still executes the 'if' code, but not the …

Member Avatar for suhaildawood
0
1K
Member Avatar for PomonaGrange

Hello all, I am looking for a bit of code to make an input field into a calculator. The main difference from most scripts is I want it with no buttons. I am hoping to use the number pad on the keyboard. So, for example, I would like an input …

Member Avatar for niranga
0
334
Member Avatar for divsok

why this code shows <b> tags? ---------------------------- <html > <head> <title>My Editor</title> <script type="text/javascript"> var displayText=""; function boldText(){ oForm = document.forms[0]; oTextarea = oForm.elements["txtArea"]; textarea_val = oTextarea.value; oTextarea.value = textarea_val.bold(); } </script> </head>

Member Avatar for divsok
0
316
Member Avatar for prashanth18

Hello All, I have this situation. 1. I have one Text box (say first) and add button. 2. If i click add, one text box should be added + one delete button. 3. if i click add again, second text box should be added + one delete button. and so …

Member Avatar for kunalkrishneel
0
6K

The End.