A: 

One thing you could try is using Firebug, or some other DOM inspector and check the actual element IDs that are being generated by ASP.NET before and after your AJAX call and see if they are the same.

Jason Miesionczek
that was the first thing i've checked, all ID match up
roman m
+1  A: 

You're just missing your id selector syntax. Try:

$('#<%= txtRcaNotes.ClientID %>').hide(); 
alert($('#<%= txtRcaNotes.ClientID %>').attr('id'));

Note the addition "#" prepended before each selector.

Crescent Fresh
oh man ... i spent too much time on this one ... thanx :)
roman m