<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hi Scott,
<br>&nbsp;&nbsp;&nbsp; Thanks for the info on the Javascript book. I am
heading to Amazon right not to check it out...I also checked out your website
and believe it or not, we have a small soapmaking business and have used
hemp seed oil in some of our products. I think when I was in my teens I
used some too but it was different :)
<br>Thanks again,
<br>Dave
<p>Golden Troll wrote:
<blockquote TYPE=CITE>&nbsp;
<div class="OutlookMessageHeader" dir="ltr"><span class=930260905-09122001><font face="Arial"><font size=+0>
I prefer the JavaScript bible by Goodman awesome...!</font></font></span></div>

<div class="OutlookMessageHeader" dir="ltr"><span class=930260905-09122001><font face="Arial"><font size=+0>Scott</font></font></span></div>

<div class="OutlookMessageHeader" dir="ltr"><span class=930260905-09122001><font face="Arial"><font size=+0><a href="http://www.goldentroll.com">www.goldentroll.com</a></font></font></span></div>

<div class="OutlookMessageHeader" dir="ltr"><span class=930260905-09122001><font face="Arial"><font size=+0>(it
shouldn't crash Netscape now.....)</font></font></span></div>

<div class="OutlookMessageHeader" dir="ltr"><span class=930260905-09122001></span><font face="Tahoma"><font size=-1>-----Original
Message-----</font></font>
<br><font face="Tahoma"><font size=-1><b>From:</b> javascript-admin@LaTech.edu
[<A HREF="mailto:javascript-admin@LaTech.edu">mailto:javascript-admin@LaTech.edu</A>]<b>On Behalf Of </b>Dave</font></font>
<br><font face="Tahoma"><font size=-1><b>Sent:</b> Saturday, December 08,
2001 5:59 AM</font></font>
<br><font face="Tahoma"><font size=-1><b>To:</b> javascript@LaTech.edu</font></font>
<br><font face="Tahoma"><font size=-1><b>Subject:</b> Re: [Javascript]
thumbnails displayed on one html page</font></font>
<br>&nbsp;</div>
Hi Peter,
<br>&nbsp;&nbsp;&nbsp; Thanks for the quick response on my question. I
will use this info and try to make it work again and then if I have a problem
I can ask another more specific question. What book would you consider
to be the best on Javascript? I have found that when buying books that
I usually end up with about 10-20 books on the same subject as not all
books are created equal, and some books have more info or are written in
an easier to learn fashion. I tend to favor O'Reilly or Wrox..I would like
your honest opinion of a book that I should get.....
<br>Thank you,
<br>Dave
<p>Peter Brunone wrote:
<blockquote TYPE="CITE">Dave,
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; In server-speak, the parameters
after the ? in the URL are called the
<br>querystring.&nbsp; In the client side world... well, I don't know what
to call
<br>them, so we'll just keep calling them that :-)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Using the window.location.href
property, you can get the entire URL of the
<br>current page (including parameters that you append).&nbsp; The correct
syntax for
<br>appending parameters is as follows:
<p><a href="http://www.domain.com/directory/file.html?param1=this&param2=that">http://www.domain.com/directory/file.html?param1=this&amp;param2=that</a>
<p>and so on.&nbsp; When you grab this entire string using window.location.href,
you
<br>can then parse the URL for the pieces you want using the .substring
and
<br>.indexOf methods and the .length property of your string.&nbsp; For
example, if
<br>you wanted the piece of the above URL (after putting it into a variable
<br>called strURL) after the question mark, you would do the following:
<p>strParams = strURL.substring(strURL.indexOf("?"), strURL.length);
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; You could then split up the
pieces further.&nbsp; I suggest you pick one of the
<br>Javascript resources from
<br><a href="http://www.mountaindragon.com/javascript/resources.htm">http://www.mountaindragon.com/javascript/resources.htm</a>
or a good book and
<br>read up on the string methods.
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Alternatively, you could
do this server-side with PHP, ASP, PERL, or
<br>another scripting environment.&nbsp; For what it's worth, I find server-side
<br>methods easier and more powerful for dynamic content like this, but
what you
<br>want is still attainable with client-side Javascript.
<p>Cheers,
<p>Peter
<p>|-----Original Message-----
<br>|From: javascript-admin@LaTech.edu [<a href="mailto:javascript-admin@LaTech.edu">mailto:javascript-admin@LaTech.edu</a>]On
<br>|Behalf Of Dave
<br>|Sent: Friday, December 07, 2001 8:21 PM
<br>|To: javascript@LaTech.edu
<br>|Subject: [Javascript] thumbnails displayed on one html page
<br>|
<br>|
<br>|Hi,
<br>|&nbsp;&nbsp;&nbsp; I am not an expert so I have come to find help
on an operation I
<br>|have seen work, but cannot get it to work for me. I want to display
<br>|pictures created with thumbnails with the output going to a single
html
<br>|page so I can retain my background to match my website. This is opposed
<br>|to the full sized image being displayed on a white background and
in the
<br>|upper left hand corner. I have heard of a "?" extension (in html 4.01)
<br>|being applied to an html document in the URL address with everything
<br>|being set after a "?" in a document, accessable from javascript in
the
<br>|opened document. You can then use it to send the filename of the image
<br>|to be opened on that page. Does anybody know how to do that?
<br>|Thanks,
<br>|Dave
<br>|</blockquote>
</blockquote>
</html>