I have some Javascript that I want to use in a wordpress page template. As it currently works there is one element that needs to be changed inside the script for each new page. This is some keywords which generates something on the page. These can be easily changed by hand each time but I would like it if I could get the Java script to strip out words from the pages tags (I have enabled tags on the pages). The script is something like this <script language="JavaScript" src="http://DELETED &query=TAG1+TAG2+TAG3+TAG4 DELETED"></script> DELETED = the source that I would rather not reveal So in the source I have the part: &query=TAG1+TAG2+TAG3+TAG4 I want this query to get it's TAGS text from the wordpress tags of the new page, rather than me manually typing them in for each new page. Is this possible? If so is it simple?