Is there a way to capture the events fired in a PrintDialog? I
would like to capture when the user presses "Print" so I can do some
cleanup.
The asp.net (IE6) application I'm working on has 6 pages, each of
which has a link to a "print view" page. That "print view" page has a
"print" button which calls a javascript function "printThis":
function printThis() {
alert('printThis')
window.print();
/*window.onafterprint fires when page
is loaded into print dialog, not
when page is actually printed;
need to capture when user actually hits
the 'print' button on the printDialog
and call donePrinting
*/
}
function donePrinting() {
alert('donePrinting')
document.all.hdnFldPrinted.value = true;
document.forms[0].submit();
/*code for clean-up and redirection
to one of 6 pages is in code-behind */
}
Does anyone know how I can capture when the user presses the "print"
button in the PrintDialog that's opened by window.print()?
I have an iframe in my main html and within iframe, I'm loading another HTML webpage. In my main html page, I've captured the mouse click event, by setting the "onclick" for <bodyof main page.
I am trying to "ajaxify" my site. Now I have one problem:
$("#posts").children().remove(); $("#tag-sidebar").children().remove(); $.each(data.Tags_Sidebar, function (indexInArray, valueOfElement) { var insert = $("<li>");
[Code]......
Now when I click one of those links (href1, href2, href3) generated, the click event won't execute! What's the problem? Also, is it right that I have to transfer the valueOfElement over, like I did? What does stopEventPropagation do? Prevent the href from being navigated to? That's what I am trying to do.
I have a series of images with an animation bound to mouseover and mouseleave events, and I'm trying to get my head around adding a click event that would prevent the mouseleave animation from occurring only for the image that was clicked, preserving everything else as is (until another image is clicked). I've discovered .stop() and I think I'm getting close, but some part of the logic is still escaping me.
Usually a change in the querystring causes a page reload and procedural code can can then run with the loading of a page. What I need to do is run code when links cause the browser to focus on an anchor.
For instance, I want to fire a script that prints to the screen every time the querystring changes via the following links: Code:
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.
Does anybody of you have a good algorithm to capture when a value in a textbox is changed? I'm using the keypress/keydown events but they seems to be a bit inconsistent (IE and Mozilla). Basically what I want is to set is a "isDirty" flag when a user has changed any value in the textbox (or in a dropdown) and then if he/she tries to leave the record without saving I want to give a save warning. Since I don't want set the isdirty flag if you for example klick tab, certain F-buttons, arrows (up/down/left/right) etc I tried to capture the keypress/keydown event and ignore specific keycodes. Since there are several keycodes that should be ignored I was hoping there is a better solution.
I have table with 'n' number of rows. I want to highlight the row when ever i click on a particular row of the table. Can anyone please help me in this. Iam not using any Id's for the row.
How do I capture the current URL to a string? What I want to do is press a "submit" button that takes me to whatever URL is present in the address bar of the browser.
I used jQuery because is a very powerful tool, but I'm currently stuck with the iframes.The problem is simple, I try to capture the value of a class, or to create an event that is in an iframe.
var divs = document.getElementsByTagName("div"); for (var i = 0, l = divs.length; i < l; i++) { d1.write (divs[i].attributes.length+"-attribute length<BR>");
[code]...
I am hitting other objects, and I am not sure how to write the code to dive into those objects.
How can I capture and display the a lavue from the url to a user. Eg. The user logs onto my page and clicks a logon button. An error code is added to the end of the url if authentication is denied and bounces the user back to the same page. How can I display the added code to the user. code...
How can I display invalid_user to the user in an alert box.
How do I capture the keycode inside a <textarea> in NN6+ and IE5.5+? I don't want to add add document.keyPress function because I only want this to occure when a specific textarea is selected and not fire for every keypress in the entire document.
<textarea onkeypress="captureKeys();"....
but I cannot get a reference to the current event so i can ask for the keyCode. In IE I can check the event.keyCode inside my function captureKeys but this is not possible in NN6+.
I want to capture the event when a browser is closing, to give to the user the posibility of close or no this browser. When the browser is closing, this show a confirm window with two buttons: Accept and Cancel.
When press the Accept button, the browser is closing, and when press the Cancel button, the browser isnīt closing.
I have tried with the event onunload, but this closes first the browser, and then shows the confirm window.
How can I capture the event when I click with the cursor anywhere in the page (that is, on a component or elsewhere). This event would occure in an I.E 5.5 or later browser.
I am attempting to develop a completely web-based set of tools that can match the functionality of a set of Tcl/Tk programs that are used in our control system environment. I believe that I can do everything that the Tcl/Tk tools are doing except this one thing:
The Tcl/Tk app allows the user to pick two points on their screen (which defines a rectangle) and then automatically grabs that potion of the screen as an image and embeds it into the Tcl/Tk app as an object which is then uploaded to a database when the user has submitted the Tcl/Tk form.
I would like to have a web-page with a form that allows file-uploads (this I can do), but I would like the page to include an embedded Java applet (presumably) that allows the web-client to capture a portion of the screen and automatically attach it to the html form which can then be uploaded to a database when the client submits the form.
An important requirement of this project is that it not require the user to install anything prior to visiting the web-page. The applet (or whatever) can be installed but not a separate program. I really want this entire function to be provided from the web-page. I can provide more information if necessary, but I though that a broad statement of the problem would allow more people to chime-in with their thoughts. I am eager to find out how this might be possible.
I am attempting to develop a completely web-based set of tools that can
match the functionality of a set of Tcl/Tk programs that are used in our control system environment. I believe that I can do everything that
the Tcl/Tk tools are doing except this one thing:
The Tcl/Tk app allows the user to pick two points on their screen (which defines a rectangle) and then automatically grabs that potion of
the screen as an image and embeds it into the Tcl/Tk app as an object which is then uploaded to a database when the user has submitted the Tcl/Tk form.
I would like to have a web-page with a form that allows file-uploads (this I can do), but I would like the page to include an embedded Java applet (presumably) that allows the web-client to capture a portion of the screen and automatically attach it to the html form which can then be uploaded to a database when the client submits the form.
An important requirement of this project is that it not require the user to install anything prior to visiting the web-page. The applet (or
whatever) can be installed but not a separate program. I really want this entire function to be provided from the web-page. I can provide more information if necessary, but I though that a broad statement of the problem would allow more people to chime-in with their thoughts. I am eager to find out how this might be possible.
I know this question has been asked a million times but I still can't get an event from an embedded ActiveX Exe to be caught in javascript. I am able to access all the properties and methods of the ActiveX Exe, I just can't seem to catch the event.
The event handler never fires. I debugged the ActiveX Exe and verified that the event is indeed being raised. I am able to catch the event in a VB6 test container project as well. Any ideas?
I want to make a capture window in *standalone* (in a *.js file) javascript, much in the same way as the VBscript inputbox() function. I can make it inside a *.html file with the prompt() function.
Or, is there a way to make a window and then work with this window?
Does anyone know how to event capture on an autocomplete dropdown - this would not be the underlying html element but only on the autocomplete dropdown itself.
I've never come across trying to capture autocompletes before (in fact, ideally i'm trying to ignore keypresses on the autocomplete and only capture those for the underlying input).