Results 1 to 3 of 3

Thread: Unterminated string constant?

  1. #1
    Join Date
    Feb 2007
    Location
    🌎
    Posts
    528
    Thanks
    10
    Thanked 10 Times in 10 Posts
    Blog Entries
    2

    Angry Unterminated string constant?

    I am having some difficulty with this line of code:
    HTML Code:
    <input type="submit" name="button" id="button" value="Tally" onClick="window.location = 'tally.php?sfonts=' + document.getElementById('textfield').value + '&ssounds=' + document.getElementById('textfield3').value + '&swallpaper=' + document.getElementById('textfield4').value + '&sicons=' + document.getElementById('textfield5').value + '&ssoundtracks=' + document.getElementById('textfield6').value + '&sprograms=' + document.getElementById('textfield7').value + '&dfonts=' + document.getElementById('textfield2').value + '&dsounds=' + document.getElementById('textfield8').value + '&dwallpaper=' + document.getElementById('textfield9').value + '&dicons=' + document.getElementById('textfield10').value + '&dsoundtracks=' + document.getElementById('textfield11').value + '&dprograms=' + document.getElementById('textfield12').value';">
    In Firefox, the button doesn't do anything. In IE, I get an unterminated string constant error! Please help!
    ....(o_ Penguins
    .---/(o_- techno_racing
    +(---//\-' in
    .+(_)--(_)' The McMurdo 500

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Take the highlighted part below out:

    Code:
    '&dprograms=' + document.getElementById('textfield12').value';
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. The Following User Says Thank You to thetestingsite For This Useful Post:

    techno_race (07-26-2008)

  4. #3
    Join Date
    Feb 2007
    Location
    🌎
    Posts
    528
    Thanks
    10
    Thanked 10 Times in 10 Posts
    Blog Entries
    2

    Default

    (bangs head)
    ....(o_ Penguins
    .---/(o_- techno_racing
    +(---//\-' in
    .+(_)--(_)' The McMurdo 500

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
  •