What 's wrong with this 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.
4 posters

    What 's wrong with this code ?

    TamDonCo
    TamDonCo
    Forumember


    Posts : 427
    Reputation : 2
    Language : English

    Solved What 's wrong with this code ?

    Post by TamDonCo September 6th 2016, 9:06 pm

    I have 2 images ( image 1 and image 2 )

    click on image 1 and image 2 on/off alternately


    but it does not work ?


    Code:
    $(function(){

    $("body").append('<div class="vietkeybutton">

    <img src="http://2img.net/s/t/20/71/96/i_folder_new.gif" onclick="MyFunction();var img = document.getElementById("imgInfo");if (img.style.visibility === "hidden")  img.style.visibility = "visible"; else img.style.visibility = "hidden";"  />

    <img id="imgInfo" src="https://upload.vstanced.com/images/2016/09/06/NQW.png" style="visibility:hidden" />

    </div>')

    });


    Last edited by TamDonCo on September 6th 2016, 10:10 pm; edited 1 time in total
    Ch@lo Valdez
    Ch@lo Valdez
    Forumember


    Male Posts : 138
    Reputation : 50
    Language : spanish

    Solved Re: What 's wrong with this code ?

    Post by Ch@lo Valdez September 6th 2016, 9:35 pm

    try:

    Code:

    function change_img(){
        var img=document.getElementById("imgInfo");
        img.style.visibility ==="hidden" ? img.style.visibility="visible"  : img.style.visibility="hidden";
    };

    $(function () {

        $("body").append('<div class="vietkeybutton"><img src="http://2img.net/s/t/20/71/96/i_folder_new.gif" onclick="change_img();"/><img id="imgInfo"src="https://upload.vstanced.com/images/2016/09/06/NQW.png" style="visibility:hidden"/></div>')

    });

    or better:

    Code:

    function change_img(){
        var img=document.getElementById("imgInfo");
        img.style.visibility ==="hidden" ? img.style.visibility="visible"  : img.style.visibility="hidden";
    };
    $(function () {
        var a = '<div class="vietkeybutton"><img src="http://2img.net/s/t/20/71/96/i_folder_new.gif" onclick="change_img();"/><img id="imgInfo"src="https://upload.vstanced.com/images/2016/09/06/NQW.png" style="visibility:hidden"/></div>';
    document.body.insertAdjacentHTML('beforeend', a);
    });
    TamDonCo
    TamDonCo
    Forumember


    Posts : 427
    Reputation : 2
    Language : English

    Solved Re: What 's wrong with this code ?

    Post by TamDonCo September 6th 2016, 10:05 pm

    Thank You very much, Ch@lo Valdez

    It works excellent
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51517
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: What 's wrong with this code ?

    Post by SLGray September 6th 2016, 10:09 pm

    Is this solved? If yes, please mark the topic with the solved topic icon.



    What 's wrong with this code ? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19358
    Reputation : 2006
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: What 's wrong with this code ?

    Post by Ape September 7th 2016, 10:57 am

    Problem solved & topic archived.
    Please read our forum rules:  ESF General Rules



    What 's wrong with this code ? Left1212What 's wrong with this code ? Center11What 's wrong with this code ? Right112
    What 's wrong with this code ? Ape_b110
    What 's wrong with this code ? Ape1010