Did Chome Suddenly Change?
Jun 14, 2011
I had a bunch of javascript, pretty simple stuff, working perfectly for many months. I haven't changed any of the code for just as long, and suddenly a bunch of stuff isn't working. Here's an example.Suppose I have a form
Code:
<form action="action.php" name="theForm" id="theForm" method="post" onsubmit="return validate();">
...
[code]....
View 5 Replies
ADVERTISEMENT
Apr 7, 2010
What's wrong with this code? It works in IE and FireFox, but Chrome does not work. The idea is that the function fnTimeOut will be triggered in 5 seconds after onmousemove (fnTimeOut was attach in onmousemove in document). It�s ok. But when, in Chrome, I click on the button "ok" to function fnAlert is triggered instantly. It should be shot just 5 seconds after I move the mouse
<input type="button" onclick="alert(1);" value="ok">
<script>
document.onmousemove = fnTimeOut;
[code]....
View 11 Replies
View Related
Jun 10, 2009
Using AJAX, I wrote a little function that will call a .cgi script on our server, and populate 2 different select fields. The JS code is:
Code:
$(function(){
$("select#Continent").change(function(){
alert("HERE");[code]....
Now, I know #Continent exists - as I can see it fine in the HTML.
View 3 Replies
View Related
Jan 14, 2011
Regarding a previous post of mine: jquery-cycle-plugin-24-12-2010 I seem to have a problem using the Malsup Image Cycle where the images suddenly appear shrunken. It appears to only affect me when using ASP.NET with site.master pages the problem doesn't occur every time just occassionally. I tried recreating the glitch outside of ASP.NET (simply using HTML, CSS etc......) but it worked fine. I will soon try and recreate the problem in a sample ASP.NET project and post the code on this thread as soon as it's ready.
[Code]...
View 1 Replies
View Related
Jul 11, 2010
I'm using a text area to display textual updates to a user from the server. I'm inserting the text at the bottom of the textarea and need to set the scrollbar to the bottom of the textarea after every update. The problem is that the onChange event only fires if the user actually changes something in the text area, not if it is changed by an ajax update.Does anyone know of a way to detect if there has been an update to a textarea that was NOT triggered by a user?
View 2 Replies
View Related
Feb 11, 2011
based on selection of radio button, i want to change the text box to enable and disable. And additionally, how to set if i enter a value in textbox1 then calculating something and display the result in textbox2 that to on key up.. not on form submitting.
View 4 Replies
View Related
Oct 2, 2011
I'm a real newbie with Javascript, but I'm having fun. I just bought the book, "Simply Javascript" (have only just cracked it so far). I'm reasonably familiar with PHP (I use a lot of it to do simple things). I'm a Web desinger and do custom CSS Websites (I'm fairly new to that too couple of years or more working with CSS and I've never done a table based layout.
[Code]...
But when the button is clicked, nothing will call the showCaption() function again, and I can't figure out how to call that function as the images advance. I have tried a lot of things with a lot of weird results, one being the tne next caption will display in a blank browser window, without the Webpage! I'm not sure why that happens, but I have a clue.
Is there an easier way to do what I want to do? I only want to show a few lines of text that will describe each image. Seems simple enough to me, but I'm just too new to make it work.
View 6 Replies
View Related
May 9, 2010
[URL]
i cant get a caption specific to each image to display under the arrows when the image changes. it is especially hard for me because i have to edit the javascript which confuses the **** out of me. it seemed so simple....
ps i cant start an id with a digit? it doesnt seem to cause any problems...why is it stated that this cannot or shouldnot be done?
View 1 Replies
View Related
Jun 23, 2010
I am trying to change my cursor to a help cursor for a webapp I'm helping to develop. It partially works, except when an element has a CLASS attribute. For example:
HTML Code:
<div id="outer">
<input type="text" id="textouternoclass" />
<input type="text" id="textouterwithclass" class="foo" />
[Code]....
So now to my questions:
1) Is this okay? Is there a better way to do this?
2) With doing this, any divs/inputs that do have their cursor attribute set will lose it. What's the best way to store this info so it can be reset?
View 1 Replies
View Related
Nov 16, 2011
I'm using jquery to load an external portion (ex: content ) of a file and animate the page when the user clicks a link.
My problem is: I want to change the url when the user clicks a link. Something like [URL]
View 1 Replies
View Related
Feb 12, 2010
I'm trying to make buttons that change from one color to another when you click them and change back when you click them a third time. I wrote this page (http://cf.lehigh.edu/ems/test.html) but it only works on Firefox(Not IE or Chome, untested on safari or Opera). I'm using javascript to change the button colors. Is there another way to do this that works universal or another tool such as CSS?
[Code]....
View 1 Replies
View Related
Jul 31, 2011
How would I go about doing something like this?I want to have a div, and when you click on it the content changes. Then I want it so that if you click anywhere else besides that div, the content should be changed back.So I want <div></div> to change to <div>content</div> when you click on it, and when you click anywhere else in the document it should turn back to <div></div>
View 1 Replies
View Related
Feb 5, 2010
give me a sample code for this situation ?
- button A = labeled as Unlocked
- when I on mouse over button A the label should turn into "Lock me ?"
- and then when I click the button, the label will change to "Locked"
View 11 Replies
View Related
Jul 31, 2010
One gentleman on the "live" page of the jQuery docs suggested the followingworkaroundcode in order to get change() to work in IE:
I am not familiar with doChange and whether I apply this suggestion correctly for:
View 1 Replies
View Related
Oct 16, 2010
I am not very familiar with AJax, and for simplicity sake, I am trying a simple code. When I click the text box it should change the text and display "hello there", but it did not change. Is there something wrong with the code? I know this can be done with out using AJAX, but I want to test AJAX.page1.php
PHP Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
[code].....
View 6 Replies
View Related
Apr 16, 2009
I try to find working example, but no luck.I need this very simply javascript to onClick change value and second click change value back and third click change value again back and so on..
View 7 Replies
View Related
May 12, 2003
Im looking into a way to update CSS on the fly (as it were) within a page that's already loaded using only client-side scripts (i.e. Javascript or any browser specific script as its for intranet use only).
The idea is i want non DW savvy (HTML? whats that?) web designers within the company im working for to be able to preview styles on a page by selecting a series of dropdown boxes to change the font, color, etc. for there designs. Code:
View 4 Replies
View Related
Jul 19, 2011
I'm writing a lightweight htc program (=javascript) for IE 9. CSS3 has a new property called transition, but it doesn't work in IE 9. Everything is turned out great so far, but I need to know when a property is changed by CSS:[code]No events were triggered on the elements, but CSS DID change them.
View 1 Replies
View Related
Jul 23, 2005
if I have some text inside a tag like:
<div id="test" >
stuff I want changed
</div>
how can I change it to something else:
<div id="test" >
my new text
</div>
using a javascript fuction which I call elsewhere in the page?
View 6 Replies
View Related
Jul 23, 2005
I change an image using a map by rolling over a button. The point is I have
to change the map as well. I tried this way:
document.images['home_dx'].usemap = "#" + NewMap;
but it seems not to wrok. Do somebody know how to do it?
View 2 Replies
View Related
Jul 23, 2005
I would like to know how can I change a row background color when an user select a row.
View 4 Replies
View Related
Feb 25, 2006
I want to change a image on a table and also change text on another part of the table on mouse over. Is there a way of doing this. I can change the image but cant seem to
work out how to change text.
View 1 Replies
View Related
Apr 4, 2006
I have a table in which I would like to change the background image
onMouseOver. I implemented it with CSS but IE doesn't support hovers on
tables, so I'd need to go via JS for IE. Can anyone give me a hint how to
do this? Code:
View 1 Replies
View Related
Apr 6, 2006
I would like to change the appearance of the URL, which gets displayed
in the title of the Browser, without the page being reloaded. Sounds
strange.. here an example.
The users arrives at www.example.com and in the URL bar of the browser
he sees:
http://www.example.com
I'm looking for some javascript which would change the URL which gets
displayed in the title to:
http://www.ExAmPlE.com
without the page being reloaded!
Is that possible at all?
View 5 Replies
View Related
Aug 21, 2006
I would like to have an element, a text string, change into a select
when a mouseover occurs and then change back to text when a selection is
made or when a mouse out occurs. I looked a t using dojo for this,
http://dojotoolkit.org, but this will end up on a production server,
where dojo is not installed and cannot be installed. So, I need another
solution. Can someone give some pointers on how this might be done?
View 2 Replies
View Related
Jul 20, 2005
I'm building a web page with pictures I've taken with my digital camera. I
have succeded making a javacript that, when clicking on a thumbnail, it
changes the main image.
Now, I would like to put an explanation (and date and some EXIF-info) to
each photo so some text is shown next to the main photo when loaded.
I don't know how to change the text without reloading the whole page, and I
don't want that.
View 15 Replies
View Related