Results 1 to 4 of 4

Thread: String Concatenation

  1. #1
    Join Date
    Apr 2007
    Location
    Wisconsin, USA
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default String Concatenation

    I am trying to concatenate a few strings and variables, but am having trouble because whenever I validate the page, it tells me that the quote after the a href must be literal.

    Code:
    <li><script type="text/javascript">document.write("<a href=\"" + wgServer + wgScriptPath + "/index.php?title=Special:Search\"><img src=\"http://wikiskinz.byethost7.com/forums/images/toplinks/search.gif\" alt=\"\" />Search</a>");</script></li>
    http://validator.w3.org/check?uri=ht...pe=Inline&ss=1

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    the validator site is currently down, however here is the script

    Code:
    <li>
    	<script type="text/javascript">
    		document.write("
    			<a href=\"" + wgServer + wgScriptPath + "/index.php?title=Special:Search\">
    			<img src=\"http://wikiskinz.byethost7.com/forums/images/toplinks/search.gif\" alt=\"\" />Search</a>
    		");
    	</script>
    </li>

  3. #3
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    This will also do the job

    Code:
    <li><script type="text/javascript">document.write("<a href='" + wgServer + wgScriptPath + "/index.php?title=Special:Search'><img src='http://wikiskinz.byethost7.com/forums/images/toplinks/search.gif' alt='' />Search</a>");</script></li>

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    The preferred method is to make the script external.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •