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.

link|improve this question

44% accept rate
it means the value property of your object is not defined or not set – 3nigma Sep 29 '11 at 10:22
As a side note .val() should return the value in jquery as well. – TommyBs Sep 29 '11 at 14:47
Yes it should be working but its not unfortunately. It gives 'undefined' always. – Vivek Batra Sep 30 '11 at 9:17
Doesn't matter I try to set the value and then try to get the value. Result is same 'undefined'. – Vivek Batra Sep 30 '11 at 11:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.