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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Greenster

  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}

Part and Inventory Search

Back
Top