Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
function Psend()
 {

     new Ajax.Request('Handler.ashx',
        {
            method: 'get',
            onSuccess: function(transport) {
                var response = transport.responseText || "no response text";
                //alert("Success! \n\n" + response);
                var obj = response.evalJSON(true);

                for (i = 0; i < 4; i++) {

                    DeCheBX = $('MyDiv').insert(new Element('input', { 'type': 'checkbox', 'id': "img" + obj[i].Nam, 'value': obj[i].IM, 'onClick': 'SayHi(this,i)' }));
                    DeImg = $('MyDiv').insert(new Element('img', { 'id': "img" + obj[i].Nam, 'src': obj[i].IM, 'style': 'display = inline', 'onClick': 'Say(this)' }));
                    document.body.appendChild(DeCheBX);
                    document.body.appendChild(DeImg);

                }

            },
            onFailure: function() { alert('Something went wrong...') }
        });


        SayHi = function(x,i) {

            if ($(x).checked == true) {

                //               $('id').hide();

                **$('img'+i).style.visibility = "hidden";**// doesnt work 
            }



        };

Handler.ashx

public class Handler : IHttpHandler
{

    public void ProcessRequest(HttpContext context)
    {

        string[] Img = new string[5] { "http://farm4.static.flickr.com/3210/3033577103_f80cb2e399_t.jpg", "http://farm1.static.flickr.com/76/184936863_dceeaa048c_t.jpg", "http://farm4.static.flickr.com/3133/2630880079_9035711f2f_t.jpg", "http://farm4.static.flickr.com/3064/2395929114_a4d69a22c6_t.jpg", "http://farm3.static.flickr.com/2195/2214604053_1de19931cf_t.jpg" };
        int[] Name = new int[5] { 1, 2, 3, 4, 5 };
        StringBuilder output = new StringBuilder();
        // output.Append("\"Images\":\" ");
        output.Append("[");
        for (int i = 0; i < 5; i++)
        {
            output.Append("{");
            output.Append("\"Nam\":\"" + Name[i].ToString() + "\",");
            output.Append("\"IM\":\"" + Img[i] + "\" ");
            if (i != 4)
            {
                output.Append("},");
            }
        }

        output.Append("}]");
        context.Response.Write(output);



    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }

}

output

<input id="Button1" value="button" onclick=" Psend()" type="button">
<div id="MyDiv">

<input onclick="SayHi(this)" value="http://farm4.static.flickr.com/3210/3033577103_f80cb2e399_t.jpg" id="img1" type="checkbox"><img onclick="Say(this)" style="" src="http://farm4.static.flickr.com/3210/3033577103_f80cb2e399_t.jpg" id="img1"><input onclick="SayHi(this)" value="http://farm1.static.flickr.com/76/184936863_dceeaa048c_t.jpg" id="img2" type="checkbox"><img onclick="Say(this)" style="" src="http://farm1.static.flickr.com/76/184936863_dceeaa048c_t.jpg" id="img2"><input onclick="SayHi(this)" value="http://farm4.static.flickr.com/3133/2630880079_9035711f2f_t.jpg" id="img3" type="checkbox"><img onclick="Say(this)" style="" src="http://farm4.static.flickr.com/3133/2630880079_9035711f2f_t.jpg" id="img3"><input onclick="SayHi(this)" value="http://farm4.static.flickr.com/3064/2395929114_a4d69a22c6_t.jpg" id="img4" type="checkbox"><img onclick="Say(this)" style="" src="http://farm4.static.flickr.com/3064/2395929114_a4d69a22c6_t.jpg" id="img4">
</div>
share|improve this question
How is this triggered? Also, you have several variables you use that do not have var before them, are they defined elsewhere? Not enough information. Can you clean up the formatting on the code and show a bit of the relevant html? – artlung May 6 '10 at 17:33
all variables are defined – Vicky May 7 '10 at 5:27
it creates dynamic page...like it displays images and check box. i am getting all those.i hope this will help ful to u – Vicky May 7 '10 at 5:33

1 Answer

$('img'+i)

i is undefined.

Update: You are setting the element id as "img" + obj[i].Nam.

share|improve this answer
i am sorry i forgot to update my program.still is doesnt work – Vicky May 6 '10 at 7:09
all variable defined... – Vicky May 7 '10 at 5:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.