[jQuery] Re: No ajax response from Firefox?

2010-01-04 Thread Paul Hutson
> For the purposes of testing, I have been calling this PHP script: > > echo "response"; > ?> Instead of the echo "response"; try creating a span with the id response. i.e. Write to here

[jQuery] Re: Automatic scrolling

2010-01-04 Thread Paul Hutson
r Empires, here... http://gameview.outer-empires.com/Info/Newbie.asp) HTHs, Paul Hutson

[jQuery] Re: slideDown trouble in Safari/Chrome

2010-01-04 Thread Paul Hutson
know that isn't exactly the answer you were looking for - but it should help out. For reference, you can change CSS type properties directly with a call like this : document.getElementById("NAMEOFDIV").style.width = 10; I can't remember how to do it in a more jquery like way at the moment. HTHs, Paul Hutson

[jQuery] Re: Looking for that plugin that uses scrollTo for product demos...

2010-01-03 Thread Paul Hutson
Do you mean something like this? : http://plugins.jquery.com/project/ScrollTo

[jQuery] Re: Coverflow for jQuery?

2010-01-03 Thread Paul Hutson
You can't quite do the same with jquery (reflections wise) you can however do a similar type animation (there are a few plugins on the jquery site that do an accordian like function)

[jQuery] Re: No ajax response from Firefox?

2010-01-03 Thread Paul Hutson
Could you post an example of your code that isn't working please?

[jQuery] Re: Fade out an initial image to reveal home page

2010-01-03 Thread Paul Hutson
As a side note, I did something similar in http://gameview.outer-empires.com when you finish loading after the character selection screen if you want to have a look at it.

[jQuery] Re: Fade out an initial image to reveal home page

2010-01-03 Thread Paul Hutson
On Jan 1, 8:53 pm, Trev wrote: > Hello, I am completely new to jQuery, and I don't even know how to > approach or implement what I am trying to do. Use a div to hold the image - set it at a higher Z index than everything else. When the document has finished loading (or whenever you deem it shoul

[jQuery] Re: Formatting long chains of jQuery code

2010-01-03 Thread Paul Hutson
On Jan 3, 2:03 am, Šime Vidas wrote: > Is there a prefered way of formatting jQuery code when you have 5 or > more chained methods? FWIW you do it the way I would.

[jQuery] Re: simple jquery question

2010-01-03 Thread Paul Hutson
This will do what you want, first I assigned the elements via a filter : elements = $('h3').filter('.example'); Then I scrolled around the items found and output them to a span for debugging. elements.each(function() { $('#Output').html($('#Output').html() + "" + $(this).html()); }); He

[jQuery] Re: Full jQuery website

2009-08-10 Thread Paul Hutson
> Is there any project about a website using pure jQuery for rendering > the pages ? When you say pure jquery, what exactly do you mean? Outer Empires uses Jquery for a LOT of the positioning, animation, etc when in game (http://www.outer-empires.com) - the front page uses a little as well now

[jQuery] Re: Jquery Game : Outer Empires : Open Beta

2009-08-10 Thread Paul Hutson
p.s. Sorry if I put this in the wrong place!! I didn't know where else to post it...!

[jQuery] Jquery Game : Outer Empires : Open Beta

2009-08-10 Thread Paul Hutson
imobster clone. For reference, however, the iPhone version is a proper native app, NOT using Jquery in any way, except for the in game galaxy viewer. If you have any questions or comments, either leave them here, or post them up in the "newbie" channel in game and I'll reply in there

[jQuery] Re: load

2009-06-23 Thread Paul Hutson
Ensure you've included the Jquery package at the top of the page.

[jQuery] Re: Jquery Sound

2009-06-23 Thread Paul Hutson
On Apr 29, 4:47 pm, Evan wrote: > On Mar 13, 3:06 pm, Paul Hutson wrote: > > > > > > > Hello, > > > I've been trying to get the following working : > > >http://dev.jquery.com/view/trunk/plugins/sound/ > > > Howev

[jQuery] Re: Finding items in an UL by their LI's Attributes

2009-06-17 Thread Paul Hutson
Thanks for the help (and the tip!) It all worked excellently :) Cheers, Paul On Jun 16, 7:19 pm, mkmanning wrote: > $('ul').find('li[typeref=E][typeid=1]') > > NB: an id attribute that starts with a number isn't valid markup. > > On Jun 16, 10:05

[jQuery] Finding items in an UL by their LI's Attributes

2009-06-16 Thread Paul Hutson
Element 2 I would like to do a search of the above UL and get back the id of the first LI element you can see in the list there by doing a search for typeref="E" && typeid="1". Is that possible using Jquery? Any help would be very very gratefully recieved! Regards, Paul Hutson

[jQuery] Re: Outer Empires - based around Jquery

2009-05-28 Thread Paul Hutson
The handsets use their own client versions which connect to the servers at the backend - however, cheating was a concern at first but we've implemented a system that passes access keys to the client when they first log in and use it for future access calls. The key is associated with the device,

[jQuery] Re: Outer Empires - based around Jquery

2009-05-28 Thread Paul Hutson
, Paul On May 28, 11:05 am, "ryan.j" wrote: > sins of a solar empire meets eve, all powered by jquery? > > sounds fun! :) > > On May 28, 10:55 am, Paul Hutson wrote: > > > > > Hello all, > > > I've mentioned this from time to time in these

[jQuery] Outer Empires - based around Jquery

2009-05-28 Thread Paul Hutson
f what we're doing. http://www.youtube.com/watch?v=lAj2KYuFV2g We are, as always, looking for more testers and - from my POV - it'd be excellent to get some more technically minded testers from the Jquery community.. Looking forward to your comments and questions. Regards, Paul Hutson

[jQuery] Re: help with menu and show/hide divs

2009-03-14 Thread Paul Hutson
Kevin, You could always go back to basics... i.e. the following (you'll have to use your existing hide show code..) - and I know this isn't elegant... if (ClickedItem == "firstdiv") { ShowFirstDiv; HideSecondDiv; HideThirdDiv; } elseif (ClickedItem == "firstdi

[jQuery] Re: jQuery UI... Being integrated into our entire website

2009-03-14 Thread Paul Hutson
Looks good - some of the bits on the site are a bit cheesy, i.e. "Saving the world... from high priced..." :) But yeah, the UI is good. Regards, Paul On Mar 14, 3:07 am, K-BL wrote: > Thursday I released a new version of a website I manage, > Cablesforless.com, which takes full advantage of jQ

[jQuery] Re: xml parsing

2009-03-13 Thread Paul Hutson
> I tried that but IE still does not work. An other ideas? Thanks. I can only think to try to ensure that it's going into the MSIE part of the if statement. > Now one more question, after Shoot.

[jQuery] Jquery Sound

2009-03-13 Thread Paul Hutson
Hello, I've been trying to get the following working : http://dev.jquery.com/view/trunk/plugins/sound/ However, it only plays about a second to three seconds of the designated sound before shutting off (in FF and Safari) but loads fully in Opera. The music is hosted locally at the moment. Any

[jQuery] Re: xml parsing

2009-03-12 Thread Paul Hutson
Ah ha - the IE nasty problem, I solved it like this : On Ajax Success : var xml; if($.browser.msie){ xml = new ActiveXObject( 'Microsoft.XMLDOM'); xml.async = false; xml.loadXML( xmlData); }else{ xml = xmlData

[jQuery] Re: Ajax Search - Plugin Needed

2009-03-12 Thread Paul Hutson
> Is there a good jquery plugin for this sort of thing? Do you need a jquery pluggin for that? Sounds like what you need to do is use an AJAX call to call the search page you're using (upon the enter button being pushed in the search area) then process the XML that comes back (with the search it

[jQuery] Re: UI: Drag and Drop between two separate Trees

2009-03-12 Thread Paul Hutson
> Is it possible? Yes. > Any suggestions / comments / questions are very welcome. I would make the area behind the tree droppable, make the items in the tree draggable. Then just move them from one place to the other. If you want to make them save every move, use an AJAX call once the drop h

[jQuery] Re: Drag - Drop - with Layers

2009-03-11 Thread Paul Hutson
On Mar 11, 6:03 pm, "Richard D. Worth" wrote: > We'd love to help with this question over on the jQuery UI list: > > http://groups.google.com/group/jquery-ui > > - Richard Apologies!, I've posted it over there now.

[jQuery] Re: Switching Content in same div

2009-03-11 Thread Paul Hutson
The following will give you a way to do what you want : function UpdateMe(Type) { if (Type == "Blue") { $("#AreaToView").HTML("Blue Stuff"); } else { $("#AreaToView").HTML("Red Stuff")

[jQuery] Re: Superfish - Horizontal Internet Explorer Width Problem

2009-03-11 Thread Paul Hutson
I think it may be the table width your using for the section - you're saying that you'll allow a 516 pixel width for the table - so it keeps filling up the space. If you want it to act like it does in firefox you could fake it by putting a div on the right hand side of the page in a high up layer

[jQuery] Re: Update DIV

2009-03-11 Thread Paul Hutson
> > Ajax.Updater allows you to simply update the content of a DIV. If you want to go back to the super simple, you can update the inner content of a div with: $("#DIVID").html("CONTENT"); i.e. : $("#blah").html("I've just been added to the div blah..."); Therefore, on your callback from th

[jQuery] Drag - Drop - with Layers

2009-03-11 Thread Paul Hutson
layer (div wise), moving right to left works fine... Any ideas at all as to what the problem could be would be much appreciated - is there a bug with layers in the draggable interface? Thanks in advance, Paul Hutson p.s. As you can see, I'm building a game using an awful lot of Jquery :)

[jQuery] Re: Jquery.com - UI examples down?

2009-02-24 Thread Paul Hutson
> > Seems I botched the demos. Thanks for the note. I'll take a look. > > > - Richard > > > On Mon, Feb 23, 2009 at 12:28 PM, Paul Hutson > > wrote: > > >> Hello > > >> Bit of a noddy question, but I just wanted to make sure it wasn'

[jQuery] Jquery.com - UI examples down?

2009-02-23 Thread Paul Hutson
Hello Bit of a noddy question, but I just wanted to make sure it wasn't just at my end.. .. is the jquery.com site not working quite correctly, i.e. the examples don't work on the following pages : http://docs.jquery.com/UI/Progressbar http://docs.jquery.com/UI/Slider So - is anyone else seein

[jQuery] Re: Getting Style Information (left/top)

2009-02-09 Thread Paul Hutson
Thank you everyone - lots to go on there.

[jQuery] Getting Style Information (left/top)

2009-02-09 Thread Paul Hutson
top :? (both of which don't work for me..) Thanks in advance, Paul Hutson