Closed Thread
Results 1 to 3 of 3

Thread: Need Some Help Please

  1. #1
    revenger is offline Newbie
    Join Date
    Nov 2009
    Posts
    2
    Rep Power
    0

    Smile Need Some Help Please

    Ok I Am Trying to write a script were users can change colors to there own prefers and i have some of the codes wrote but am very confussed how to get it to work property. But I have <div> and wanted to write them from css well here is the codes anyways:
    Code:
      <select id="ddlColors" style="background-color: White;">
        <option style="background-color: red;">1</option>
        <option style="background-color: Blue;">2</option>
        <option style="background-color: Fuchsia;">3</option>
        <option style="background-color: Gray;">4</option>
    </select>
    <script>
        $("select").change(function() {
            $("select").css("background-color", $("select option:selected").css("background-color"));
        })
        .change();
    </script>
    
    <table width="100%" border="0" bgcolor="**right here is were i wanna change color**">
      <tr>
        <td><div></div></td>
      </tr>
    </table>
    thanks advance and I am not sure if that is even how to set it up were members can change the colors. but thanks
    Last edited by WingedPanther; 11-06-2009 at 09:08 AM. Reason: add code tags (the # button)

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Posts
    16,491
    Blog Entries
    75
    Rep Power
    143

    Re: Need Some Help Please

    Are you doing this with jQuery?
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #3
    revenger is offline Newbie
    Join Date
    Nov 2009
    Posts
    2
    Rep Power
    0

    Re: Need Some Help Please

    well see someone gave that code to me and said start with this. like I said this is my first time and not sure how to set it up so members can change the background color of the <div> tags background from the css style sheet

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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