|
First
|
Prev |
Next
|
Last
Pages: 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
automatic submission of forms hi Is ther anyway i can automatically fill out forms and submit them thru java? supposing i hav a normal txt file that contains all data that needs to be filed out into the form, is there anyway i can fill out a form and submit it automatically by providing only the URL of the form and the txt file? thanks Najl... 27 Mar 2006 17:33
how to handle exceptions? [Exception... "'Permission denied to set property XULElement.selectedIndex' when calling method: I can not figure out the meaning of this error: Error: [Exception... "'Permission denied to set property XULElement.selectedIndex' when calling method: [nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: http://www.bluecasts.com/pdsIncludes/pdsAja... 24 Mar 2006 08:56
Possible to resize an Iframe to its content's height? Maybe this doesn't make any sense, but is it possible to dynamically resize an iframe to the height of its contained page? Something that works in Opera/Firefox/IE. I can resize it with a document.getElementById("frameItems").style.height = "200px" for example, but was wondering if I could access somehow the full... 24 Mar 2006 15:42
Why javascript strings not equal? I have the following code: --------------------------------------------- <html> <head> <script language="javascript"> function readHiddenField() { var string1 = 'hidden_field_l00'; var string2 = 'hidden_field_' + '100'; alert(string1 == string2); var sampleRow = document.getElementById(string1)... 23 Mar 2006 11:08
Path Hi! I have JS program which opens XML file for parsing and loading informations from file on client side... I use file upload (file field) HTML control to browse for files. Problem: How can I write file path when I run program from the internet and need to force JS to load file from my local disk!?!? If ... 21 Mar 2006 12:38
element.style.position="relative !important"; Hi, I tried the following and everything worked fine. element.style.position="relative"; Then I tried to make the CSS rule important and it didn't work. The positioning was all wrong in Safari and very jerky in Firefox. element.style.position="relative !important"; Am I doing this correctly? Thanks, ... 18 Mar 2006 17:40
Refresh iframe How do I refresh an iframe via JavaScript from the parent page? /Jacob ... 16 Mar 2006 02:18
java based chat hello all! how is it possible to backdoor a java based chat room? www.iskon.hr/chat/chat.jsp ... 12 Mar 2006 20:16
getElementById The following code works in Mozilla Firefox but not in IE. Where is the problem? ------------------------------ <HTML> <script> function hi() { html = document.getElementById('html').checked; alert(html); } </script> <input type=checkbox id=html onchange="hi();" checked>HTML format </HTML> ---------------... 11 Mar 2006 21:27 |