I am having a strange problem with jQuery inside sharepoint. My jQuery code works fine in Web Applications but when I use the same code on a Web Part it creates problem.
Here is the problem with jQuery in Web Parts. I have external JavaScript file which I reference on my web part.
This is my function in a separate JavaScript file.
function CallJS() {
alert($("#txt1")); **// It returns the object**
alert($('#txt1').attr('value')); **// Always return 'undefined'**
return false;
}
My development environment is VS2008, SharePoint 2007 and jQuery version is 1.4.4.