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 strongm 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. ZimZangZoom

    Pass varibles in a loop

    I think I may have solved my own problem... I have to set the click in its own function.. ... ... ... for (var i in this.Tab) { this.SetClick(this.Tab[i]) } } ITabControl.prototype.SetClick = function(Tab) { var copy = this; document.getElementById(Tab.tabId).onclick= function() {...
  2. ZimZangZoom

    Pass varibles in a loop

    Thanks Guys, I would like to take my example one step further if you dont mind.. I am trying to program with more of an Object approach, so I come into many issues.. But I have my "ITabControl" object It can have many "Tabs" (see definition below function...
  3. ZimZangZoom

    Pass varibles in a loop

    Thanks for your help guys. It can see how both solutions will work, But what if i wanted to pass more than Just the ID (i am thinking down the road a little bit here) What if i wanted to pass an Object to the ShowTab function? Drew
  4. ZimZangZoom

    Pass varibles in a loop

    Hello, I am looking through an array. I want to set the onClick attribute to different elements during the loop. Here is what I have so far <html> <head> <title>My Doc</title> <script> function SetTabs() { var TabArray = new Array(); TabArray[0] = "FirstTab"; TabArray[1] = "SecondTab"...
  5. ZimZangZoom

    Online Quiz Javascript Question

    Can i See your page, so i can view the whole source ? You dont have to post it in here. thats too much code :) if you point me to the URL ill view Source and take a peak. It should be easy i think.. Drew
  6. ZimZangZoom

    Online Quiz Javascript Question

    Maybe look into another site to host your quiz. A site that has a function of mailing you the results. here are some links GOOGLE key words: Remotely Hosted Quiz http://www.hotscripts.com/Remotely_Hosted/Tests_and_Quizzes/index.html Drew
  7. ZimZangZoom

    Online Quiz Javascript Question

    The small code i showed you above will show the information the user sent in their email client. If you want to do it like other sites, you will have to look into another language to submit the email from the servers end. Basically the program will have to take the JS results, and sent it to...
  8. ZimZangZoom

    When does javascript need to be in the &lt;head&gt;?

    This might help you out. Its bit of a read., but will help explain things. http://www.quirksmode.org/js/placejs.html Drew
  9. ZimZangZoom

    Online Quiz Javascript Question

    Here is some code on how to send email using a form and no other server side language. <form action="mailto:you@yourdmainhere.com" method="post" enctype="text/plain" > FirstName:<input type="text" name="FirstName"> Email:<input type="text" name="Email"> <input type="submit" name="submit"...
  10. ZimZangZoom

    Online Quiz Javascript Question

    JavaScript is a Client side programming Language. This means it does not interact with the server at all. Therefore not having access to an email server to send the results. There is a way you can send for data to your email using the clients email i think. But they are prompt that this is...
  11. ZimZangZoom

    &amp;nbsp

    I think you can use <blockquote>This is my text</blockquote> Maybe that will do what you need it to do. Drew
  12. ZimZangZoom

    something to store data in

    Hello, I will be getting a lot of values from an XML document and I need to store them into something reusable in Javascript. My Data will look like so. (basically a table) name,email,address,phone,age,school,grade,teacher,bus,sports...
  13. ZimZangZoom

    how to make a plugin (aip)

    yes thank you. i actually came accross it yesterday incause anyone else ever wanted to know, here is what i found C++ is the language used... using adobe illustrator SDK http://partners.adobe.com/public/developer/illustrator/sdk/topic.html kind of interesting anyway.. imagin the...
  14. ZimZangZoom

    how to make a plugin (aip)

    Hello, I am interested in making an adobe illustrator plug in. I was wondering if anyone had any ideas on what laguage they use, and any resources i should look at. any information would be great. My assumptions are: They have some Object Model that can be used with some scripting language...
  15. ZimZangZoom

    I have a lib, but how to load it ?

    Hello, I am new to C, but have some experience in other languages like C. I need a bit of help loading a library i have found written in C http://shapelib.maptools.org/ Included in the download of this library are some .exe .dll and .h files. How do i go about using the functions this...
  16. ZimZangZoom

    Should i Learn

    Hello, I have been Programming in Perl and PHP for a long time and am looking for something new and powerful Should i learn C++ will I be able to adapt to it quickly ? I am one to learn a little bit about everyuthing and am interested in the power of C++ And can anyone reccommend any good...
  17. ZimZangZoom

    Embedding IE in a Perl/Tk Widget?

    Just for fun... What is Tk widget for Perl? I googled it, but did not find what its used for.
  18. ZimZangZoom

    Any sites that support free Perl usage for guestbook?

    Or if you dont feel like getting down an dirty just use a Remotly hosted one from a site like ( i hate to recommend themm but... ) http://bravenet.com/ You will have a banner no matter what if you use a free server. I suggest installing the code yourself though.. you will learn a lot more and...
  19. ZimZangZoom

    write data froma HTML form into a file and email the file

    Here is some code that might help you. It does not add an attachment, but simply send you the information and a link to the file created. #!/usr/bin/perl #- Call the CGI module. use CGI qw/:standard/ ; #- Prints errors on the browser use CGI::Carp qw(fatalsToBrowser); # Prints to HTML...
  20. ZimZangZoom

    write data froma HTML form into a file and email the file

    Did u want it to send the file as an ATTACHMENT or just the text submitted by the form in the email? Its very easy to send the form and put it into a file. But if you want to start making attachemnts then there will be more involved.

Part and Inventory Search

Back
Top