-
1. Re: Passing Parameters
MurraySummers Jul 23, 2010 10:32 AM (in response to GESYMSB)Certainly, but it would require that you use custom javascript or server scripting to set it up. HTML has no such facility.
-
2. Re: Passing Parameters
GESYMSB Jul 23, 2010 11:52 AM (in response to MurraySummers)Can you give me an idea, where to look ?
( You dont change, you always there helping people )
Date: Fri, 23 Jul 2010 11:32:39 -0600
From: forums@adobe.com
Certainly, but it would require that you use custom javascript or server scripting to set it up. HTML has no such facility.
>
-
3. Re: Passing Parameters
MurraySummers Jul 23, 2010 11:57 AM (in response to GESYMSB)For server scripting it would depend entirely on your hosting for the site. If the host supports PHP, for example, you could use something like -
<img src="image<?php echo $_GET['id']?$_GET['id']:''; ?>.jpg" />
If you call this page with page.php?id=4, then the image tag would be written <img src="image4.jpg" />
As for javascript, you'd have to google for that. Perhaps try "javascript url variable" and see if you can find some code to parse out the variable from the URL.
-
4. Re: Passing Parameters
Ben Pleysier Jul 23, 2010 7:32 PM (in response to MurraySummers)You can make use of ready made Spry functions without having to resort to server side coding.
Please see here for more http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
I hope this helps.
Ben
-
5. Re: Passing Parameters
GESYMSB Jul 24, 2010 7:52 AM (in response to Ben Pleysier)Hey that was great !
Date: Fri, 23 Jul 2010 20:32:47 -0600
From: forums@adobe.com
You can make use of ready made Spry functions without having to resort to server side coding.
Please see here for more http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
I hope this helps.
Ben
>


