How to add a class to this javascript code? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    How to add a class to this javascript code?

    Starrain
    Starrain
    New Member


    Female Posts : 5
    Reputation : 1
    Language : Html | CSS

    Solved How to add a class to this javascript code?

    Post by Starrain Sun 17 Jan - 13:40

    Hello! ^^
    I have just found this topic and this code:
    Code:
    <script type="text/javascript">document.write(_userdata.avatar)</script>
    I'd like to put this into a html page, but I was wondering if there is any possibility to give this code a class so that I can add CSS codes to it. I haven't had the chance to learn javascript yet, so it would be nice if someone could tell me how to add a class to the code ^^

    Greetings, Starrain





    Last edited by Starrain on Tue 19 Jan - 21:10; edited 1 time in total
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: How to add a class to this javascript code?

    Post by Ange Tuteur Mon 18 Jan - 18:05

    Hi @Starrain,

    document.write() can take any string of HTML and will parse it at run time. In answer to your question, you can concat the avatar variable between two HTML strings.
    Code:
    <script type="text/javascript">document.write('<span class="user_avatar">' + _userdata.avatar + '</span>')</script>

    If any questions let me know. Wink
    Starrain
    Starrain
    New Member


    Female Posts : 5
    Reputation : 1
    Language : Html | CSS

    Solved Re: How to add a class to this javascript code?

    Post by Starrain Tue 19 Jan - 21:09

    It works! Thank you very much and have a nice day ^-^
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: How to add a class to this javascript code?

    Post by Ange Tuteur Tue 19 Jan - 21:50

    You're welcome ^^

    Topic archived

    Have a good day. Smile