[jQuery] Re: missing ; before statement

2009-03-04 Thread brian
$("#toc").change (function () { There's a space after "change". Maybe that's it? On Wed, Mar 4, 2009 at 8:36 PM, sanguisdex wrote: > > I worked and begged on IRC all do to get this code: > > >        $(document).ready(function(){ >                $.fn.addTocHandler = function ( ) { >          

[jQuery] Re: missing ; before statement

2009-03-04 Thread Michael Geary
JOsh, do you have an editor that checks JavaScript syntax in real time? That makes it much easier to track down problems like this. If you don't have one, go here and get Komodo Edit: http://www.activestate.com/komodo_edit/ Load your script into Komodo Edit and you should see a squiggly red unde

[jQuery] Re: missing ; before statement at DOCTYPE declaration

2008-12-17 Thread Dirceu Barquette
Ricardo, I sow this error in my app. If an PHP message (e_warning, e_error) was sent by the server, it comes in a header and make the code unresponsive. Hope help you. 2008/12/17 Ricardo Tomasi > > Are you serving this page as application/xml+xhtml ? I believe the xml > declaration at the top

[jQuery] Re: missing ; before statement at DOCTYPE declaration

2008-12-17 Thread Ricardo Tomasi
Are you serving this page as application/xml+xhtml ? I believe the xml declaration at the top can cause parsing errors for some browsers. On Dec 17, 4:31 am, Technosis wrote: > I chose to use an xhtml strict doctype for an application I am working > on. I'm getting the error on the DOCTYPE decla

[jQuery] Re: missing ; before statement

2008-08-28 Thread Michael Geary
Those are headers. They should be separate from the data. An HTTP download looks like: Header-1: Value Header-2: Value Header-3: Value Content... That is, the first blank line ends the headers. If your server is inserting a blank line before the headers, it would cause the problem you describ

[jQuery] Re: missing ; before statement

2008-08-28 Thread mohsin
sometime i m getting following lines with my ajax data instead of error HTTP/1.1 200 OK Date: Thu, 28 Aug 2008 11:50:39 GMT Server: Apache/ 2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_autoindex_color PHP/5.2.5 X-Powered-By: PHP/5.2.5 Expires: Mon, 26 Jul 1997 05:00:00 GMT Cache-Control:

[jQuery] Re: missing ; before statement

2008-08-27 Thread Michael Geary
Go here and download Komodo Edit: http://www.activestate.com/Products/komodo_edit/ Open your JavaScript source file in Komodo and rest the mouse over the line of code with the red squiggly underline, or click the "document icon with a red circle and white exclamation point" at the bottom of the

[jQuery] Re: missing ; before statement

2008-08-27 Thread mohsin
missing ; before statement HTTP/1.1 200 OK\n this is the complete error i m getting on line 65

[jQuery] Re: missing ; before statement

2008-08-27 Thread mohsin
var listing_update = this_domain_mybayut+"/includes/sub/ updatelistings.php"; $(".view_detail").livequery(function(event) { /*$(this).mousemove(function() { return overlib('View Property Detail',WIDTH,150,CENTER); }); $(this).mouseout(function()

[jQuery] Re: missing ; before statement

2008-08-27 Thread Mike Alsup
> No one can help you with this, because you haven't shown us the code in > question. What? Is that a challenge? I bet mohsin's code is missing a brace somewhere. :-)

[jQuery] Re: missing ; before statement

2008-08-27 Thread Michael Geary
No one can help you with this, because you haven't shown us the code in question. Post a link to a test page that has the error, and then someone can help you. Or, at the very least, post the code in a message. Otherwise, I'd have to say... You probably have some missing semicolons! :-) -Mike

[jQuery] Re: missing ; before statement

2008-08-27 Thread Karl Swedberg
Hmm. I'm surprised that you're seeing this as an error. Are you sure it isn't just a warning? Where is it being reported? --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 27, 2008, at 12:58 PM, mohsin wrote: I am get error missing ; before statement o

[jQuery] Re: "missing ; before statement" in ui.tabs

2008-03-10 Thread Klaus Hartl
I assume you downloaded the latest version? --Klaus On Mar 9, 5:16 pm, eyal <[EMAIL PROTECTED]> wrote: > Hello, > > For some reason i'm having "missing ; before statement" error when i'm > running ui.tabs altough on the demo page it's run just fine. > > What do think might be the problem? > > T

[jQuery] Re: "missing ; before statement" in ui.tabs

2008-03-10 Thread andrea varnier
On 9 Mar, 17:16, eyal <[EMAIL PROTECTED]> wrote: > Hello, > > For some reason i'm having "missing ; before statement" error when i'm > running ui.tabs altough on the demo page it's run just fine. > > What do think might be the problem? > > Thanks! > Eyal could you please post some of your code so