Hi,

There might be one possibility that 1) you are using the latest JQuery
release, and 2) the return javascript is not in the root level
<script> tag (ie, you have someting like <div> (or
whatever) ...<script> Your javascript code </script>... </div>.  If
this is the case, due to JQuery's bug, the javascript won't be
evaluated. And you can solve this by put <script> as the root tag. Or
you use the latest Jquery code from the svn.

If this is not the case, I would like to see what exactly the repsone
look like.

Thanks,
Changsu


On Nov 15, 2:22 pm, Ufucuk <[EMAIL PROTECTED]> wrote:
> Hi;
> I use ajax for an application. I use JSON as data type and the
> response is something like;
> <div id=\"areaMan\" style=\"display:none;\">
> Message<br />
> <textarea></textarea>
> </div>
> <a href=\"javascript:void(0)\" id=\"addNote\">Not Ekle</a>
>
> And Javascript is;
>
> $("#addNote").click(function () {
>         $('#areaMan').show();
>
> });
>
> I execute this function when page is loaded, but ıt doesnt work for
> this response.
> What is wrong?

Reply via email to