[jQuery] Re: google.load(jquery) and jquery plugins

2010-01-27 Thread barton
uot;); > google.setOnLoadCallback(function() { > > $.getScript("http://inlinemultiselect.googlecode.com/files/jquery.inlinemultiselec...";, > function(){ >      $('select.normal').inlinemultiselect(); >    }); > > }); > > on 26/01/2010 19:04 barton said::

[jQuery] google.load(jquery) and jquery plugins

2010-01-26 Thread barton
When I try to use google.load to load jquery I have problems loading other jquery plugins. Somehow I need to be able to wait for jquery to be loaded by the google Ajax api before doing the I know that google has google.setOnLoadCallback(function() { but how do I do the

[jQuery] Moving, sliding and fading text...

2009-09-08 Thread Barton
Hello, I'm a newbie to jQuery and wanted to know if the following could be replicated using jQuery instead of Flash? www.cocoonurbanspa.gr - click your language, and you will then see the element I would like to recreate Thanks again, Barton.

[jQuery] Re: iframe and xml

2009-06-10 Thread barton
: > Hi, > I'm confused as to why you are trying to load XML into an iframe using > AJAX. > Why not just set src="atom.xml" and load the feed directly into the > iframe? > > Paul > > On Jun 9, 9:13 pm, barton wrote: > > > I have been trying to insert x

[jQuery] iframe and xml

2009-06-09 Thread barton
I have been trying to insert xml into an iframe. I can do it kinda. The problem is the iframe has tags and if the xml has items that look like tags like etc they end up in the head. For example I have a atom file that looks like this: http://purl.org/atom/ns#";> Gmail - Inbox for bartonphill.

[jQuery] plug-in tablesorter bug/anomalies

2009-06-04 Thread barton
The tablesorter plug-in by Christian Bach has what I think are a couple of bugs/anomalies. 1) a column that starts with a zero is not identified as a 'digit'. I think it should be. 2) a column that starts with an IP address that looks like 192.168.1.1 or 1.127.77.1 -- that is any IP with a single

[jQuery] Re: AJAX issue

2009-05-10 Thread barton
You might try this: $(data).find("item").each(function(i, item) { stuff = $item.find('[nodeName="content:encoded"]') ... Where 'data' is what comes back from the ajax call. I couldn't find another way to get the data from a 'xx:yy' element. I asked the question on the board here and this was

[jQuery] Re: $.get only reads a certain number of nodes from a local xml file before failing

2009-05-04 Thread barton
Check your xml very carefully, the load does not cope with or report errors well. Try using $.ajax and add an 'error:' section. Then see if you get an parser error, if so start removing nodes until the error goes away, and then look very very carefully at the xml. I have had this kind of problem m

[jQuery] Re: Is it possible to select on multiple attribute values?

2009-04-24 Thread barton
That is very interesting, can you explain it a bit. I can't find any documentation on jQuery.expr[":"] -- I can find it in the code but don't really understand what/how it does/works. jQuery.expr[":"] = jQuery.expr.filters; but now I'm really lost. On Apr 24, 6:13 pm, mkmanning wrote: > You can

[jQuery] Re: AJAX xml problem

2009-04-23 Thread barton
mine my teachings critically, as a gold assayer would test gold. If you > find they make sense, conform to your experience, and don't harm yourself > or others, only then should you accept them.' > >   From:       barton                          

[jQuery] Re: Drop Down Menu (sub-sections)

2009-04-21 Thread barton
Take a look at the 'plugins' and search for 'navigation drop down' I think you will find something there that you can uses. On Apr 21, 8:51 am, PF wrote: > Hi everyone: > > I am wondering if there is some way to create drop down navigation > bars using jQuery.  For example, if the user rolls ove

[jQuery] Re: AJAX xml problem

2009-04-21 Thread barton
d test gold. If you > find they make sense, conform to your experience, and don't harm yourself > or others, only then should you accept them.' > >   From:       barton                               >                                                       > >   To:

[jQuery] Re: Sort losing click association

2009-04-21 Thread barton
Did you look at the 'livequery' plugin? On Apr 21, 8:21 am, Blaine wrote: > Hi, > > I'm currently building a list when the document is ready, then > performing a sort on the list if the user clicks "sort Asc" or "sort > Desc". However, when the list is sorted and redisplayed, I lose the > origin

[jQuery] Re: AJAX xml problem

2009-04-20 Thread barton
Is this one just too difficult to answer? On Apr 17, 1:08 pm, barton wrote: > I have a rss feed and want to navigate to media:thumbnails just doesn't work. I am doing a .find(). Any ideas. > The feed > ishttp://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml

[jQuery] AJAX xml problem

2009-04-17 Thread barton
I have a rss feed and want to navigate to http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml which I get via a php proxy at http://www.bartonphillips.dyndns.org/test/test.php?xml=1 Thanks