i got a client side javascript function which is triggered on a button click (basically, its a calculator!!). Sometimes, due to enormous data on the page, the javascript calculator function take ... |
I'm executing an external script, using a <script> inside <head>.
Now since the script executes before the page has loaded, I can't access the <body>, among other things. I'd like to execute ... |
This sounded like something almost impossible to do when it was presented to me. I know you can display a dialog box to confirm when leaving a web page. But is ... |
In the following link
<a href=\"#\" onclick=javascript:print(\"\") style=\"color:blue;\">Print</a>"
<script>
function print()
{
//How to print the contents of another page
}
|
Hi Does anyone have a script or know how to load iframe content content after the rest of the page has loaded.
Thanks in advance
ashley
|
I am currently doing a project, in which I need to stop the user from taking the snapshot of any Web Page, for which he can use the "Print Scrn" / ... |
My VB.NET code is supposed to execute third party Javascript code in an attempt to fill in and submit a form. This process consists of five steps, and I have been ... |
|
i want to pop up a dialog before a html page is unloaded asking to unload page or not if yes is selected then unload continues else if no is selected ... |
Could this cause potential problems:
<HTML>
<BODY>
...
<INPUT name="xyz" onchange="myFunction();">
...
... |
What I mean is - when user clics on some browser page reload/refresh button we do not want to reload page - we want to capture that event and call some ... |
I have a webpage with some links, and I need to intercept the link-clicking event by jQuery. The task is finished well, but then a problem arises: if the user click ... |
In my company we have a web-based tool that you enter an account, press a button, and the page takes a little bit to load, then loads account information. There ... |
Possible Duplicate:
Triggering a JavaScript click() event at specific coordinates
Translated question:
I'm looking for a method to programmatically click on a specific (x,y) coordinate on a ... |
Just like the question states. I want to fire off an event that calls a method everytime the user clicks on the web page.
How do I do that without use ... |
How can I reload an HTML base web page only once? I am using history.go(0); with function onLoad in body tag but i want to run it only once. Please keep ... |
I want to detect and block certain keyboard shortcuts on a webpage. For example, say I want to prevent alt-tab for switching apps (just an example, assume any global shortcut)
Here's as ... |
I am working on a website which has an html page embedded inside the html page using iframe tag.
I need to capture an event in the inner html page (when ... |