Page Ceases To Respond After 30 Min. In IE
Jul 23, 2005
I am dumbfounded by this. I have a form where a user enters text for an
event which is posted to a database on submit. The form is not running a
script and is not necessarily part of a session. The page where you
enter data is .asp in name only (it loads shared header and footer
files).
After about 30 minutes, when the user clicks the submit button, nothing
appears to happen. The page sits there in front of you. Text can still
be added to the fields, the button press animation occurs, but there is
noone home.
Weirder (?) still is that this only seems to occur in Internet Explorer.
Timed trials in FireFox have the form still functioning well after the
45 minute mark.
My customer is obivously upset that his form does not function.
View 6 Replies
ADVERTISEMENT
Feb 28, 2011
How to fix browser cache and notmodified respond for JSON? jQuery.aja ({ifModified:true}) break on data respond (bug ticked for it was closed like invalid).
Are there any other solution to get 304:notmodified without breaking cache and data respond?
First time browser request [url] returns status 200 OK and nexts 304 Not Modified
XHR first time returns ok:
But on next times returns data undefined:
How to solve it? Expected result:
View 3 Replies
View Related
Jun 14, 2011
I have a userscript that goes through a table, once populated, and parses each item. If certain requirements are met, the item gets flagged. I want to add more to the script, but for some reason once the for loop has completed the script quits running. The alert("1"); will now show. This is like this in both Google Chrome and Firefox
var tbl = document.getElementsByTagName("table")[0];
var tlen = tbl.rows.length;
for (i=1;i<=tlen;i++)
{
[Code]....
View 1 Replies
View Related
Jul 20, 2005
Is it possible to have a JavaScript object that works just like a
standard Array, except that when the array is modified, a function
gets called which can then do some processing on the array?
Like this:
// SpecialArray has a function called Notify
function Notify()
{
// process the array with changes made
}
var myarray = new SpecialArray("zero", "one", "two", "three");
myarray[1] = "ein"; // after this change is made, function "Notify"
is called
I know you can derive a new object from Array, but you cannot directly
override the [] operator.
Can you add a function or event handler to a regular Array object that
gets called when the array changes?
View 2 Replies
View Related
Apr 9, 2011
I'm animating an element and have tried to do a simple css transition in jquery
$("#myelement").css('top','100');
But it wont respond unless that value is 0. I've been using these for months and suddenly 'top' and 'left' no longer respond to JS.
View 6 Replies
View Related
Aug 25, 2011
Nutshell version: I need to fire off a javascript call whenever an ASP.NET UpdatePanel is updated, and I'm not sure how to do it. Detailed version: I have an ASP.NET page that has several UpdatePanels. Some of these are in my own code and I have access to, some are used by third party controls (e.g. ReportViewer) and I don't have direct access to them.
My website also uses jQuery Mobile to render the controls in a mobile friendly way. The problem I'm having is that whenever something in an UpdatePanel is updated, the newly updated contents don't get re-parsed by jQuery Mobile, and so they revert to their original style(s).
[Code]...
The problem I'm having is that I can't figure out how to make that happen. document.Ready() doesn't refire on an AJAX update. I've tried using $('div').live(),$('div').load(),$('div').change() and a few others (I am adding these to the Master page for the website) but nothing seems to fire off when the DIV updates.
View 1 Replies
View Related
Feb 26, 2010
I wrote a little clock with JS and...The clock worked fine until i chose to dynamically add the DIV with createElement to the BODY with appendChild and the clockString to the DIV using innerHTML...and so now when i open it after about 20 seconds safari begins to stall and/or not respond...
START-CODE:
Also just fyi i use some CSS to style the DIV and font-size ect and use the BODY element's onload attribute to run the functions...
View 1 Replies
View Related
Jul 15, 2009
I'm working on creating a little suggestion/autocomplete code for form fields.[code]...
Everything works fine and when I click on the text Foo the form field value is set to foo. But, when I try clicking on a word added to the page by the keyup part of my code above it doesn't work.
View 3 Replies
View Related
Oct 7, 2009
I am using superfish and I am wondering how I can go about changing the hover event to click so that when people hover over the links it
doesn't do anything until they click them.
View 2 Replies
View Related
Sep 23, 2011
I am using a calendar that I have downloaded from a web site. I use this to provide a way for the user to choose a date from the calendar to fill in some date fields. Overall, the calendar works fine except for one problem that I cannot fix: When I add OnBlur event handler to the calendar, the calendar loses its capability to handle OnClick event -- therefore, the user cannot click a day from the calendar. I am trying to use the OnBlur event to hide the calendar as soon as the user clicks outside the calendar. Currently the user can click at a "Cancel" button on the calendar to hide the calendar, or the user can hit <Esc> key to hide it. But I think the calendar will work better if the user can click outside the calendar to hide it.
Attached please find a simplified version of the program that can show this problem. It has one single text field to put date on it. When you click at the text field, the calendar will pop up. This version has the OnBlur event handler commented out. Therefore, you should be able to choose a date from the calendar. But you cannot click outside the calendar to hide it. In order to show the problem, you need to go to the bottom of the program and uncomment this line:
Code:
//div.onblur = function() { calendar.hideCalendar(); };
After you have uncommented that line, you will find that you can click outside the calendar to hide it. Unfortunately, you will also find that choosing a date from the calendar only hides the calendar; the date is not being placed into the text field.
View 8 Replies
View Related
Jun 8, 2011
In my website I have a couple of forms that you can only see them if certain conditions are applied.
For example - if you're an admin and you search a user, you'll see a form which allows you to edit his information. if you're not you won't see it. if you're already logged in you can't see the registration form, but if you aren't you can.
So I did it with ASP in this way - (this is the registration part)
I've managed to put in the form inside the Response.Write(), and it also has the javascript part like this -
This works perfectly fine.
Now, I've done this twice. the example above is from the registration part which doesn't allow a logged in user to register again.
I'm having problems with the second one - not showing the edit form to a user who can't edit.
This is basically the code -
Now this doesn't do anything... the submit button just ignores the JS file and just submits the form the way it is, unlike the other form which is written pretty much in the same way except for other JS fields/text boxes.
I know the code is written really poorly but thats unfortunately what we've been taught in class and thats all I know.
- I'm not checking for nulls because if a field is empty it means the information won't be edited.
View 13 Replies
View Related
Feb 24, 2010
Using $.get() and insertBefore() work great for what I'm doing. But, the data I insert does not respond to events that I have set up. I'm notsurprised by this. I'm sure there is something extra I need to do. But, what is that?
View 4 Replies
View Related
May 27, 2011
i am following the example ajaxSubmit[URL].... here my code[URL]... i realized that the showRequest work correctly, shown all my form submit values But it doesn't respond "showResponse(responseText, statusText, xhr, $form)" is not execute. the respond prompt is not pop up
View 2 Replies
View Related
Feb 1, 2011
[Code]...
when i load page it does nothing only blank page, may have code in wrong place but not sure so can someone show me a working example so i can find out what i'm doing wrong also i would like the part of page to refresh evey 120 seconds is this possibe with jquery?
View 7 Replies
View Related
Mar 28, 2010
I have a frameset like:Quote:
<frameset rows="100,*,80" border="none">
<frame src="header.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
[code]....
View 14 Replies
View Related
Aug 19, 2009
I loaded page in div , usign jquery ajax
But the page which i loaded containg this code:
HTML Code:
To refresh all page index.php to redirect it to home.php
But the problem this, it's don't refresh all page which contain the div , but it's refreshed oly in the div wuch i loaded this code in it
So i want after i load this code in index.php div , then refres all page to redirect itto home.php
View 1 Replies
View Related
Sep 24, 2009
I've got 2 pages: a current events page and a past events page the current events page loads fine as there is only about 10 events the past events page takes about 30 seconds to load and will crash if u click your mouse in the loading time.
The pages are near identical the only difference is the query that selects the events (> versus <)
The page loads immediately without:
But when i put it back in the above happens. I'm using jQuery.roundedcorners.
View 1 Replies
View Related
May 10, 2010
I am using a Jquery/PHP/MySQL login script which is supposed to display an error or success message when the user enters their username/password and also if the username/pw is successfull go to a secure page. Right now as I have it coded, this isn't working properly. Basically nothing is displayed either way.Also,wasn't sure if I just needed to replace, the ?secure-page part with the file name of the page I want to go to if successful?Here is the code as I have it now.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>[code].....
View 1 Replies
View Related
May 19, 2011
I'm trying to use the cookie plugin to remember the state of a navigation menu from page to page. Here is the snippet of code from towards the top of my page where I am including the jquery files and cookie plugin. The second part of the sample tries to determine whether the cookie exists.
[Code]....
View 1 Replies
View Related
Jun 9, 2010
I am working on a page that will load in other pages using AJAX and the .html method. Something like this :
<span id = "edit">Edit</span>
<div id = "cont">
</div>
//the click edit script
[Code]....
Unfortunately this does not seem to work, entirely. It does trigger the click event but it messes up the post for some reason. I have played around with it for the last 45 minutes or so and it seems like the click event trigger is what is messing things up, if I comment it out it works fine. Could anyone tell me why they think this is? note this is an over simplified version of my actual code, but the structure is the same.
View 2 Replies
View Related
Nov 4, 2010
On my webpage, I dynamically create an iFrame when a button is pressed, then load a html page from within my own domain into the iframe, based on what html page is loaded into a variable. My question is, can I dynamically change the font family of the loaded html page from the javascript of the main page? My code to create the iframe is:
function setSubTxt(){
var par = document.getElementById('parentDiv');
par.innerHTML = '<iframe src="'+subTxt+'" style="width: 375px; position: fixed; height: 365px; left: 400px; top: 145px; border=none;" name="subIframe" frameBorder=0></iframe>';
frames['subIframe'].window.location=subTxt;
document.subIframe.document.body.style.fontFamily = "Arial";
[Code]....
the variable "subTxt" has the url of the html page to be loaded (always on the same domain). The code: document.subIframe.document.body.style.fontFamily = "Arial"; was my attempt to dynamically change the font, but it didn't work. Also, it should be noted that there is no font family set in the html pages which would override this.
View 6 Replies
View Related
Jan 10, 2011
I have an webbpage, and in the middle of it there is an iframe to a php site. So i have used this code, so after some seconds the iframe will send the guest to another page. <meta http-equiv="refresh" traget="_top" content="5 url=http://mypage.com"/> But the thing is that i want the WHOLE page to reload, and go to that page after 5 seconds (we can say). With that code, only the iframe are going to another page. Is it possible to make the whole page send the user after some seconds, to another page and not only the iframe?
View 1 Replies
View Related
Mar 29, 2011
It is possible to perform a find in page search that looks at a specific link, opens the page in a new window and finds the text within that document?? Basically I regularly use an html page in work that has a list of people and their telephone numbers. I want to be able to type in a searchbox on my main page and it open the target page and find the name I am looking for? Is this possible or can you only Find In Page on the same page or another frame?
View 1 Replies
View Related
Apr 12, 2011
I have the following bit of jQuery:
Code:
$("#save_photos_all_continue").click(function() {
event.preventDefault();
var $black_white_all = $("#black_white_all").is(':checked');
var $color_all = $("#color_all").is(':checked');
var $other_all = $("#other_all").is(':checked');
[Code]...
In Google Chrome it works fine but in Mozilla/5.0 it actually goes to the save_edits page instead of just using the post and staying on the original page.
View 2 Replies
View Related
Jul 20, 2005
I have an html page that uses javascript to open a new window and
display a file that gets created when a button is pressed.
My problem is when the file is changed and the display button is
pressed, the old file is still displaying. I have tried using
<META HTTP-EQUIV=expires CONTENT=0><META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE>, but doesn't work 100% of the time.
View 1 Replies
View Related
Jun 22, 2011
I am trying to incorporate two javascript files (using jQuery) and they are creating a conflict.If the main js is on the page part of the page does not work. If I do not include it my menu and some related features do not work correctly.One code is long so here is the link to it: *I removed Link* (this is the main code for the menu etc)The other js is:
$(document).ready(function(){
Engine.Initialize();
if( !$('body').hasClass('index') && !$('body').hasClass('homepage') ) {[code]....
View 2 Replies
View Related