Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Greenster

    Emulate Javascript

    Hi, I am writing an application that will automate web requests. I need to be able to execute the javascript in any html that I pull back, are there any emulators or code modules that do this? For example if the javascript performs a document.write('some html') I want to just get the html by...
  2. Greenster

    Executing javascript without a browser?

    The difference is that I need to automate it! Anyone else have any ideas? {Greenster}
  3. Greenster

    Executing javascript without a browser?

    Hi, Does anyone know of a way to execute javascript without using a browser? Are there any third party tools or modules in any language (Java, VB, etc) that can dynamically parse a web page including any Javascript and give you the plain old text/html that would have been generated by the...
  4. Greenster

    Change Form Action Attribute?

    Hi, I have changed the code to: function change_action(mainform){ mainform.action = "http://mydomain/test.php" form2.submit(); } It does redirect the script but I first get a error "Object doesn't support this property or method" and my POSTED VARS are all lost ? ...
  5. Greenster

    Change Form Action Attribute?

    Can I change the form action with an onlcick event? My form action is defaulted to "file1.php" but I want it to change to "file2.php" if a user hits a particular button. Is this possible?? I have been trying.... function change_action(mainform){ mainform.action.value =...
  6. Greenster

    form select

    Can I change the form action with an onlcick event? My form action is defaulted to "file1.php" but I want it to change to "file2.php" if a user hits a particular button. Is this possible?? I have been trying.... function change_action(mainform){ mainform.action.value =...
  7. Greenster

    Wrapping Email Text Outlook

    Hi, When sending an email I want to inform the client not to wrap the text until I say so! (hopefully resulting in a horizontal scrollbar) Is there anyway I can do this - specifically for Outlook (not bothered about other mail clients). I have a formatted table (NOT HTML) and I don't want the...
  8. Greenster

    Invalid pointer????

    Thanks trollacious, unfortunately I am still having problems - I don't know much javascript and was trying to find a simple way round a certain problem, since I have a deadline of tomorrow I think I will have to find an alternative method!!! But thanks again for your help - much apreciatted...
  9. Greenster

    Invalid pointer????

    Maybe I should add that form.encoded.value is a base64_encoded string, maybe characters in this string are breaking the url???? {Greenster}
  10. Greenster

    Invalid pointer????

    I have removed the double quotes and I get the exact same error??? function pop_up_data(form){ var url = 'show_reverse_class.php?encode=' + form.encoded.value + '&showing=' + form.showing.value; var name = 'Window'; var win = window.open(url...
  11. Greenster

    Invalid pointer????

    Hi, I have this code which works intermittantly and I am confused. When giving a url to the windown.open command is there a limited length?? Or do I have some other problem? I get the error "Invalid pointer" some of the time and other times its pops up the window perfectly. Here is...
  12. Greenster

    Hi, I have a mail folder which c

    Thanx Soonerland - I did do a couple of searches for "inbox" / "oulook files", etc, but it kept turning up blank - I do some scouting for references to .pst files - thanx {Greenster} {Greenster}
  13. Greenster

    Hi, I have a mail folder which c

    Hi, I have a mail folder (outlook 6) which contains mails from which I need to automatically extract information - therefore I need to be able to read these files with some sort of program. Does anyone have any idea how I can do this?? I mean, I can write the program (in VB or something) but I...
  14. Greenster

    Turn Array into String

    Thanks very much - that has helped me. Cheers {Greenster}
  15. Greenster

    Turn Array into String

    In PHP you can turn an array into a string using implode() is there a similar function is javascript? Thanx {Greenster}
  16. Greenster

    SELECT BOX MULTIPLE

    In Javascript I am looping thru a SELECT MULTIPLE form, I either want to find out the total number of options in this select box or have a check hwich says: IF ISSET (document.mainform.did_multiple[i].value){ do some stuff } Any help would be appreciated Thanx {Greenster}
  17. Greenster

    Novice needs help.. Undefined Variables...

    Hi, Make sure you have defined all of your variables before you use them. i.e don't do a comparison (if $var == 'var') unless $var has been previously defined - even if it's predefined to a blank string!! Hope this helps {Greenser}
  18. Greenster

    Apache error: reset by peer?

    Hi, I am suddenly getting lots of errors in my apache error log of "[Fri Apr 5 15:34:39 2002] [info] [client ] (104)Connection reset by peer: client stopped connection before rwrite completed" Does anyone know why this might be happening?? Many thanks in advance {Greenser}
  19. Greenster

    passing option multiple values

    Please help, I have a simple form <form action=&quot;myscript.php&quot; methode=&quot;GET&quot; name=&quot;myform&quot;> <select name=&quot;myselect&quot; multiple> <option value=1>Option 1</option> <option value=2>Option 2</option> <option value=3>Option 3</option> <option value=4>Option...
  20. Greenster

    Cannot view images in Outlook 2000

    Hi again, Thanx for the suggestions - sorry I should have been a bit more specific. We are both viewing the EXACT same email. The email is HTML format which includes jpgs. My client doesn't get the jpgs attached, he gets the WHOLE HTML email as an attachment. That's one blank email with the...

Part and Inventory Search

Back
Top