First  |  Prev |  Next  |  Last
Pages: 110 111 112 113 114 115 116 117 118 119 120 121
submit form with javascript
I have the following test page: <html> <head> <script type="text/javascript"> function submitForm() { alert("here"); return false; } </script> </head> <body> <form action="test.html" id="thisForm" name="thisForm" method="post" onsubmit="return submitForm()"> <input type="text" name="test" value="... 12 Nov 2006 20:04
JavaScript Troubles
Hi folks, I am having some issues using a program that protects my web pages (to a degree) using JavaScript (to print screen/disable clipboard, caching text selection etc). Below is the code for the page after it has been encrypted on the local machine: [CODE]<!--hppage status="protected"--> <!--Source co... 9 Oct 2006 18:46
javascript: window.open ie6 vs ie7
Hi, got a problem, hope someone could help: this function should open a popup showing an image automatically adjusting browser window's height and width. It works fine with IE6 but not with IE7. In IE7 opens popup too small. why ? function popImage(imageURL,imageTitle){ if (isNN){imgWin=window.open('about:bl... 12 Oct 2006 11:19
Unable to create an instance of the desired COM classCOM
Hi, I am trying to create object Media Player in javascript for Netscape browser. For this i have written follwoing code. var player try { if( window.GeckoActiveXObject ) { player= new GeckoActiveXObject("MediaPlayer.MediaPlayer.1"); } else if( wi... 6 Oct 2006 03:58
document referrer
does anyone know if there is anything wrong with this code? <SCRIPT LANGUAGE="JavaScript">document.referrer.indexOf("http://www.example.com") != -1){ document.write("http://www.example.com/image1.jpg")} </SCRIPT> ? ... 28 Sep 2006 12:57
AfterLoad ?? No Div found ?
I just tried also with: window.afterLoad = addCellHandlers(); it's the same. The function is invoked but foundDivs has always zero lenght . What is going on here? function addCellHandlers() { var foundDivs = document.body.getElementsByTagName("div"); -P ... 27 Sep 2006 07:09
onmouseleave Firefox equivalent
I have a very simple "hover menu", which you can see at: http://s161149005.onlinehome.us/DEMOS/FF/HMENU/main/default.htm Once you "pop it up", I want it to disappear if you mouse away from it without clicking anything. It works using "onmouseleave" in IE. I need it to work in Firefox! Can someone show me ... 19 Jun 2006 10:02
Disable TR onclick event
I have the following test web page:- <html> <head><title>Test</title> <script language="Javascript"> <!-- function fnTR() { alert("TR"); } function fnSelect() { alert("Select"); } --> </script> </head> <body> <table width="300" height="50" border="1"> <tr onclick="javascript:fnTR();"> <td a... 19 Jun 2006 02:54
Ping
hello all, I was looking for any method to run a ping command to a static ip using javascript. Is that possible?? Could I use some bash script inside of javascript for that? Thx Vlatko ... 10 Apr 2006 20:30
innerHTML vs. replaceChild()
Why does the FAQ (Q 4.15) recommend innerHTML when so many here say one should use createElement(), replaceChild() etc? Also, why does the "Alternative DynWrite function" at <http://www.jibbering.com/faq/faq_notes/alt_dynwrite.html> need such a lot of tests to find out if innerHTML assignment actually works, i... 11 Mar 2006 02:17
First  |  Prev |  Next  |  Last
Pages: 110 111 112 113 114 115 116 117 118 119 120 121