[jQuery] Re: jQuery Documentation for Visual Studio

2009-10-12 Thread Karl Swedberg
The error you're getting is caused by an @ symbol in one or more  
your attribute selectors. This syntax was removed in jQuery 1.3.x.  
Just remove the @ from the selector(s) and you should be fine. For  
example, change $('a...@href=somthing.html]') to $ 
('a[href=somthing.html]') .


For more information about getting Intellisense working with Visual  
Studio, see this article:


http://www.learningjquery.com/2009/07/setting-up-visual-studio-intellisense-for-jquery

--Karl


Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Oct 11, 2009, at 11:58 PM, Paul wrote:



Hi,
I have VS Express 2008 SP1 and Patch VS90SP1-KB958502-x86 installed. I
can't get VS Intellisense to work for , jQuert 1.3.2. When i ex. type
$, I get this:
The object is not compatible with this property or method @ 2139:1

If I change to jQuery 1.2.6 it works well?

Any suggestions to what I can do to get jQuery 1.3.2 up and run with
VS Doc?

Thanks,
Paul




[jQuery] Re: jQuery Documentation for Visual Studio

2009-10-12 Thread MorningZ

Paul, you'll also find that a good amount of plugins also stop
Intellisense from working, using -vsdoc.js on a blank copy of the
plugin gets around that

Great blog post with tons of tips and tricks on jQuery + Studio:
http://blogs.msdn.com/webdevtools/archive/2008/11/18/jscript-intellisense-faq.aspx


On Oct 12, 9:05 am, Karl Swedberg k...@englishrules.com wrote:
 The error you're getting is caused by an @ symbol in one or more  
 your attribute selectors. This syntax was removed in jQuery 1.3.x.  
 Just remove the @ from the selector(s) and you should be fine. For  
 example, change $('a...@href=somthing.html]') to $
 ('a[href=somthing.html]') .

 For more information about getting Intellisense working with Visual  
 Studio, see this article:

 http://www.learningjquery.com/2009/07/setting-up-visual-studio-intell...

 --Karl

 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com

 On Oct 11, 2009, at 11:58 PM, Paul wrote:



  Hi,
  I have VS Express 2008 SP1 and Patch VS90SP1-KB958502-x86 installed. I
  can't get VS Intellisense to work for , jQuert 1.3.2. When i ex. type
  $, I get this:
  The object is not compatible with this property or method @ 2139:1

  If I change to jQuery 1.2.6 it works well?

  Any suggestions to what I can do to get jQuery 1.3.2 up and run with
  VS Doc?

  Thanks,
  Paul


[jQuery] Re: jQuery Documentation for Visual Studio

2009-10-12 Thread Evgeny Bobovik

Try to use instead of the $ operator jQuery.
for example: instead of $(document).ready(); write jQuery(document).ready();

   Gk___




2009/10/12 Paul rcmdk...@gmail.com:

 Hi,
 I have VS Express 2008 SP1 and Patch VS90SP1-KB958502-x86 installed. I
 can't get VS Intellisense to work for , jQuert 1.3.2. When i ex. type
 $, I get this:
 The object is not compatible with this property or method @ 2139:1

 If I change to jQuery 1.2.6 it works well?

 Any suggestions to what I can do to get jQuery 1.3.2 up and run with
 VS Doc?

 Thanks,
 Paul



[jQuery] Re: jQuery Documentation for Visual Studio

2009-10-12 Thread MorningZ

the $ works perfectly fine in Studio, there's zero need to use
jQuery unless something is included that needs the dollar sign
instead

On Oct 12, 10:25 am, Evgeny Bobovik bobo...@gmail.com wrote:
 Try to use instead of the $ operator jQuery.
 for example: instead of $(document).ready(); write jQuery(document).ready();

    Gk___

 2009/10/12 Paul rcmdk...@gmail.com:



  Hi,
  I have VS Express 2008 SP1 and Patch VS90SP1-KB958502-x86 installed. I
  can't get VS Intellisense to work for , jQuert 1.3.2. When i ex. type
  $, I get this:
  The object is not compatible with this property or method @ 2139:1

  If I change to jQuery 1.2.6 it works well?

  Any suggestions to what I can do to get jQuery 1.3.2 up and run with
  VS Doc?

  Thanks,
  Paul