473,403 Members | 2,366 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

IE error - expected id, string or number - FF error console shows nothing

Hi Bytes,

Hope your day is going well and thank god it's Friday!

I've got an IE only error kicking my butt.

The java below is responsible for table row highlighting and a tool tip for one of the cells. Neither work in IE, but FF is fine.

Expand|Select|Wrap|Line Numbers
  1. $(document).ready(function() {
  2. $('.Login .Textbox').focus(function(){
  3.   $(this).attr('class', 'Hover');
  4. });
  5. $('.Login .Textbox').blur(function(){
  6.   $(this).attr('class', 'Textbox');
  7. });
  8. var loadImg = $('#loadImg');
  9. loadImg.show();
  10. var linResults = $('#entrytext');
  11. linResults.hide();
  12. loadImg.hide(1500);
  13. $("#entrytext").fadeIn(2000);
  14. $("tr:odd").addClass("highlight");
  15. $('tbody tr').hover(function(){
  16.  $(this).find('td').addClass('hovered');
  17. }, function(){
  18.  $(this).find('td').removeClass('hovered');
  19. });
  20. $('table:last td.wff').qtip({
  21. content: '1 = Movement and Maneuver<br /> 2 = ISR<br />  3 = Fires<br />  4 = Sustainment<br />  5 = C2<br />  6 = Protection',
  22.    show: 'mouseover',
  23.    hide: 'mouseout',
  24.    style: {
  25.       name: 'dark', // Inherit from preset style
  26.         border: {
  27.          width: 3,
  28.          radius: 8,
  29.          color: '#3F3F3F'
  30.                 },
  31.    }
  32. })
  33. });
  34.  
I'm hoping the error is something that jumps right out to an experienced coder, if not please let me know if I need to provide any more information regarding my question.

Also I wondered if the mix of apostrophes and quote marks is good, bad, or indifferent?

P.S. this stuff makes my newbie head hurt!!

Thanks in advance if you are able to help me understand the errors in my ways.

Respectfully,
Aaron
Sep 18 '09 #1
1 2400
RESOLVED.

},

Removed that last comma and IE was happy.
Sep 18 '09 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Peter Frost | last post by:
Please help I don't know if this is possible but what I would really like to do is to use On Error Goto to capture the code that is being executed when an error occurs. Any help would be much...
8
by: Grant Richard | last post by:
Using the TcpListener and TcpClient I created a program that just sends and receives a short string - over and over again. The program is fine until it gets to around 1500 to 1800 messages. At...
7
by: erin.sebastian | last post by:
Hello Everyone, This is my first attempt at coding using an abstract class and i am getting an error i can't figure out. Here is the back ground. I have a project that contains an abstract...
0
by: MarkD | last post by:
I have an ASP.NET (VB.NET) application that calls all VB6 COM DLL via Interop. The DLL uses functionality contained in a Custom OCX Control (Also VB6) that in turn contains a standard TreeView...
1
by: Cory Koski | last post by:
Hi all, I'm currently trying to build a component I can use in traditional ASP that utilizes the .NET webservice. I'm using VB.NET to create my class, and I am registering the class for COM...
8
by: ST | last post by:
Hello everyone, Can anyone help me with this error above when I debug my web app project in vstudio.net?? I can't figure it out! It was working fine for months, and now all of a sudden it's not!!...
0
by: XML newbie: Urgent pls help! | last post by:
I am using VB.Net. My program is to connect to a remote IPAddress. Once, it verifies the login information it should display the SessionID and enable some button . I appreciate your help and thanku...
4
by: XML newbie: Urgent pls help! | last post by:
I am using VB.Net. My program is to connect to a remote IPAddress. Once, it verifies the login information it should display the SessionID and enable some button . I appreciate your help and thanku...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.