The onerror tag has no wiki summary.
13
votes
3answers
8k views
window.onerror not firing in Firefox
I'm trying to create a javascript error logging infrastructure.
I'm trying to set window.onerror to be my error handler. It works in IE 6, but when I run it in Firefox, it runs into some conflicting ...
10
votes
8answers
8k views
How to tell if a <script> tag failed to load
I'm dynamically adding <script> tags to a page's <head>, and I'd like to be able to tell whether the loading failed in some way -- a 404, a script error in the loaded script, whatever.
In ...
8
votes
2answers
268 views
window.onerror doesn't work in mobile — How should I deal with unhandled exceptions?
I'm working on a complex web application written in Sencha Touch and PhoneGap. The way Sencha Touch applications are written makes it hard to surround every potential failure point with a try/catch, ...
8
votes
3answers
2k views
log errors with stack trace in javascript
I'm trying to log javascript errors on a productive site. So far it worked quite well with the following code included in the site:
function catcherr(errorMessage, url, line) {
var parameters = ...
6
votes
2answers
409 views
javascript image onError in case of non 200 response
I have to count image loading time. onLoadHandler is responsible for it.
<img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1' ...
4
votes
2answers
517 views
AppleScript: on error (try) line number
Is it possible to get the line number, where the script threw an error?
Example:
try
set a to "abc" + "123"
on error line number num
display dialog "Error on line number " & num
end try
...
4
votes
2answers
501 views
How to detect a script load of a file:// URL fails in Firefox?
I want to detect if a script tag (that was dynamically created and added to the DOM) fails to load. The onerror event works, except with file:// URLs in Firefox.
Unfortunately none of the techniques ...
3
votes
3answers
999 views
When to override OnError?
I'm looking into re-working and simplifying our error handling in an application I support. We currently have all of our pages inheriting from a base class we created, which in turn obviously ...
3
votes
5answers
509 views
I want to implement fire-and-forget request for in img src in JavaScript
I'm trying to implement fire-and-forget on an img src=... call from a web page, and am looking for the most solid method. Why?
In most Web tracking systems like Omniture or Coremetrics, there is a ...
3
votes
1answer
583 views
JavaScript: given a list of image URLs, how would one display the first non-broken image?
I receive a list of image URLs and currently I have several hidden img elements on my page (one for each URL in the list). When the page has finished loading, I use JavaScript to check the images and ...
2
votes
1answer
205 views
Get the actual Javascript Error object with window.onerror
Javascript has this great callback window.onerror. It's quite convenient to track any error. However, it calls with the error name, the file name and the line. It's certainly not as rich as getting ...
2
votes
2answers
415 views
Application_Error does not fire?
In Webform1.aspx.cs:
protected void Page_Load(object sender, EventArgs e)
{
throw new Exception("test exception");
}
In the Global.asax.cs:
protected void Application_Error(object sender, ...
1
vote
2answers
94 views
onerror attribute of <img> is executing javascript to change image. but it did not set the onerror image
CSS:
.posting-logo-div { }
.posting-logo-img { height:120px; width:120px; }
.posting-photo-div { height:5px;width:5px;position:relative;top:-140px;left:648px; }
.posting-photo-img { height:240px; ...
1
vote
2answers
73 views
How can I get an <img> element to re-evaluate its onerror?
I have an element with an onerror attribute that sets it to an image if its src is not found. This works great, but I want that onerror logic to be re-evaluated when the image's src is modified via ...
1
vote
1answer
151 views
what fires the onerror event handler for object tags in ie?
we have been doing some testing on some embeded flash widgets.
while i know the onerror event, when attached to a object tag is not very cross browser friendly, we are getting this handler called ...
1
vote
1answer
120 views
Delphi DataSnapXE BroadcastMessage error
I have a DatasnapXE client server application using TCP/IP. Server broadcast messages to the clients using TDSServer.broadcastmessage
If it happens that a user is not available anymore for some ...
1
vote
1answer
163 views
how to easily handle all errors in asynchronous functions of javascript?
try/catch can not handle errors in asynchronous functions.
Of course, it is possible to handle if I write try/catch in the every asynchronous functions but it is not realistic.
window.onerror can ...
1
vote
1answer
461 views
AS2: LoadMovieClip.onError doesn't seem to catch some errors
I have some AS2 code that opens a SWF file through an HttpHandler.
I'm trying to get the program to recognize when a requested file is missing.
My first attempt involved using LoadVars and "load", ...
1
vote
1answer
253 views
Error is not caught by jquery start() function
[Update. I need to be more precise, I see...]
See the following example in javascript:
<html>
<head>
<script>
window.onerror = function() {
alert('error'); // ...
0
votes
1answer
23 views
Firefox - show line number on “function not defined”?
I need to track JS errors in browser, but when I run the function in FF I get 'function not defined' error. It does not give me a line number. It works in Chrome and maybe in IE too.
...
0
votes
3answers
57 views
+50
Throwing error from cfc - cflocation doesn't work from inside onerror()
Edit: an important piece might be that I'm calling a cfc method via ajax...
I'm calling a cfc method via ajax, which returns data for use in a jqgrid table. Inside the cfc's method, I'm trying to set ...
0
votes
1answer
73 views
Error Handling using the Reactive Framework
I have designed what is essentially a propertychanged listener - i.e. when Instance.A changes, call OnAChanged()
...
0
votes
1answer
50 views
OnError event not returning control and a blank page is returned
I'm handling exceptions at page level the following way
protected override void OnError(EventArgs e)
{
Exception ex = Server.GetLastError();
Master.Message = ex.Message;
...
0
votes
1answer
59 views
Why don't I get a recursive infinite loop when throwing an error in the onError function?
In my coldfusion Application.cfc file, I define an onError function. In certain situations, I explicitly throw an exception using a cfthrow tag - e.g. <cfthrow object="#myException#">. My ...
0
votes
1answer
114 views
image onerror not registering in ie7?
so i have this script:
<script type="text/javascript">
$(window).load(function () {
var imagePath = new String($('.give').css("background-image").toString());
if ...
0
votes
0answers
136 views
How to handle 500 response code with embed tag linking to pdf generator?
I developing a javascript-heavy web app and java web server, part of which is a template editor and PDF generator with a Preview function. I have a server that can generate PDF files using Freemarker ...
0
votes
2answers
152 views
What browsers fully support script tag onerror and when is it fired?
While i know the onerror event handler is not very cross browser friendly we would like to use it when possible as a sort of fall back system if our primary js include fails to load (for whatevet ...
0
votes
3answers
110 views
In Makefile, how to cleanup lockfile files?
In GNU Make 3.81, I need to remove a lockfile in the event of an error in any part of the toolchain. Is there a special target that will allow me to do this? Do I need to write a wrapper script?
In ...
0
votes
0answers
149 views
JavaScript innerHTML <img> to test network: works everywhere but IE?
Trying to test network connection by injecting an img tag at intervals.
Here's what I've got so far. In the body tag, I place this:
<div id="insertImgHere" ...
0
votes
1answer
53 views
Detecting if a user has chosen to not display unsecure content in IE
I have a page served over https that in some instances can display images pulled from rackspace over http.
In IE this triggers a warning asking if the user would like to display the insecure items.
...
0
votes
1answer
373 views
ASP.NET MVC Override HandleError causes View to not render
In my app I'm using "HandleError" whereby if an error happens, my "Error.vbhtml" view renders. This is working great, except now I want to also log the error. I've built a custom HandleError Class, ...
0
votes
1answer
134 views
Detect if image is blocked by proxy
I have a webpage which has games on. I realize that there will be accessed from schools (mainly because me and my friends will be using it). I wish to see if a specific image is blocked and display ...
0
votes
1answer
556 views
on error goto [label] not working in VBA
In one of my Excel workbooks I have created a macro containing the following lines:
On Error GoTo saltaw
Open fileout For Output As #iFileNumber
However, when fileout contains some invalid chars ...
0
votes
1answer
344 views
javascript onerror function doesn't execute in the normal sequential flow?
my code is something like this:
function func1() {
document.getElementById("img").src="pic.jpg";
---stament2---;
}
document.getElementById("img").onerror="func2()";
In other browser, ...
0
votes
1answer
105 views
How can I iterate over all of my functions in JavaScript and add try catch blocks?
I'm trying to write to a global error handler that can work in Chrome and Safari. WebKit browsers don't support window.onerror, so I'd like to find a way to iterate through all of the functions in my ...
0
votes
0answers
398 views
CompleteRequest in HTTPModule's OnError event
I have set up a HTTPModule that intercepts an ASP.NET applications OnError event, to log the error in a database. However, what I am finding is that if the exception occurs in a loop, the page seems ...
0
votes
1answer
424 views
Redirect to current view on error in asp.net mvc?
I use TempData["message"] which internally uses session.... It works for me but when i do a
return RedirectToAction("Create"); my other values are not restored because i am redirecting to Create ...
0
votes
3answers
5k views
SSIS Dataflow script task error handling
I have a script task that is performing transformations in the middle of a SSIS dataflow. If the script fails (say it tries to convert alpha to numeric) I need it to stop with a 'failed' status and ...
0
votes
1answer
181 views
.NET MVC - Default .onError handler for javascript?
is it possible to set a default .OnError handler for AjaxOptions in ActionLinks etc. ?
0
votes
1answer
306 views
onerror handling with VS2008
function testFun() {
onerror = function() { log("caught the error"); return true; };
setTimeout(function() { throw "bad bad bad"; }, 300);
};
This is sample, code, but it demonstrates a ...
-1
votes
4answers
339 views
Why won't this code work?
Can anyone tell me why this code won't work?
<?php $err=1; ?>
<img src="334234234234234.gif" onError="<?php $err=0; ?>" />
<?php echo "<br />" . $err; ?>
Even when ...