[jQuery] jQuery gives error on page in IE after hover.

2009-12-03 Thread Duncan Krebbers
I'm using a simple jQuery hover script on my page to animate menubuttons 15px to the right on a hover. They go back at a mouse-out. The jQuery version I'm using is 1.3.2 from the Google API's. The script, located in the head of my index.php, is down here. $(document).ready(function(){ $('.navi

[jQuery] shadowbox / ajax IE8.0.6 issue

2009-09-13 Thread Duncan
r. We had to control, alt, delete to get out of the screen.' Any help greatly appreciated. -- Duncan I Loxton duncan.lox...@gmail.com

[jQuery] Re: collapsible list

2009-02-02 Thread Duncan
Hi Stephan Thanks for that it now works like a charm Duncan On Feb 2, 9:43 pm, Stephan Veigl wrote: > Hi, > > that's a feature of the event bubbling in jQuery 1.3 > You need to call stopPropagation(). > > $('li:not(:has(ul))').css({ >          cursor:

[jQuery] collapsible list

2009-02-02 Thread Duncan
Hi I'm using the function below to collapse an unordered list which all seems to workfine, but what I want is the lower level items in the the list to be hyper links (again I can get to display) but when I click on the link nothing happens. It seems to be the Jquery function stopping this but as

[jQuery] [jqmodal] issue in IE

2008-12-12 Thread Duncan
your trouble, click the yellow box and select deathstar canteen, its a good laugh. Thanks! -- Duncan I Loxton duncan.lox...@gmail.com

[jQuery] Re: state - region - suburb drill down using image maps

2008-10-26 Thread Duncan
On 13:26:09 Oct 27, Duncan wrote: > > > The problem is that when I redraw the image map, the clicks dont work > > anymore (i.e. the jquery $(".mapOpt").click(function(){ ) and also the new > > imagemap insertion didnt work with $("#imgmap").html(r.IMAGE

[jQuery] state - region - suburb drill down using image maps

2008-10-26 Thread Duncan
tion didnt work with $("#imgmap").html(r.IMAGEMAP); I had to use the old way var oldskool = document.getElementById('imgmap'); oldskool.innerHTML = r.IMAGEMAP; Any help on how to get the click function to work would be much appreciated. -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] Re: Finding form tag wrapping around image

2008-09-02 Thread Duncan
s! > > > > > I think you need to post a link to a sample page. An IMG tag can > > > never be a parent node so something odd is happening there. > > > Your HTML is invalid. You can't put a form tag between a TABLE and TR > tag like that. Try moving the form outside of the table entirely. > Using Firebug it is easy to see that the form element has no children > at all. > > Mike > -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] Re: Finding form tag wrapping around image

2008-09-01 Thread Duncan
at length = 0, and there is only one parent object - tagName > = > > 'IMG' > > > > So to me at least it doesnt look like its doing what it should? > > > > Any further help would be great - thanks! > > > I think you need to post a link to a sample page.

[jQuery] Re: Finding form tag wrapping around image

2008-08-25 Thread Duncan
nks! On Tue, Aug 26, 2008 at 11:57 AM, Duncan <[EMAIL PROTECTED]> wrote: > Thanks chaps, there is no nesting of forms, I know thats invalid. Here is > what the code looks like > > action="admin_ecom_product.cfm?Stage=ViewProduct" method=&q

[jQuery] Re: Finding form tag wrapping around image

2008-08-25 Thread Duncan
site is using jquery 1.2.5? On Wed, Aug 13, 2008 at 6:46 PM, Matt <[EMAIL PROTECTED]> wrote: > > > > On Aug 13, 5:46 am, Duncan <[EMAIL PROTECTED]> wrote: > > How do I find the id of the parent form? > > > > Try: > > $(this).parents('form').attr(

[jQuery] Re: Strongly recommend jQuery In Action book

2008-07-18 Thread iain duncan
Seconded, it's a really well done book. As is the Rhino. Also excellent is Pro Javascript Design Patterns. Iain

[jQuery] page flashing when using mac firefox

2008-07-17 Thread iain duncan
Hey folks, I am getting weird flashing/opacity pumping happening on mac firefox when I use the fadeIn or fadeOut effects. The flash is happening on the whole page while the fades are only happening on the elements I've attached them too. Anyone know what causes this and how to fix it? Thanks Iai

[jQuery] Re: jmaps - callback function problem

2008-01-18 Thread Duncan
not found, throw an error >alert('Address not found'); >} else { >alert('lat: '+point.y); > alert('lng: '+point.x); >} >}); > } > > // test it out: > customGeoCode(&#x

[jQuery] Re: jmaps - callback function problem

2008-01-17 Thread Duncan
>address: $('#fromAddress').val(), >cache: $.jmap.GGeoCache, >returntype: 'object' >} > > lat = address[1]; > lng = address[0]; > > I haven't tested this, but

[jQuery] Re: jmaps - callback function problem

2008-01-15 Thread Duncan
can anyone please help me with this? On Jan 15, 2008 11:35 AM, Duncan <[EMAIL PROTECTED]> wrote: > I am trying to make use of the jMaps plugin > http://digitalspaghetti.me.uk/2007/11/20/jmap2-beta-release-out to > retrieve the lat and long of an address so I can put it into

[jQuery] jmaps - callback function problem

2008-01-14 Thread Duncan
result to a variable : $address = $('#map').searchAddress({ address: $('#fromAddress').val(), cache: $.jmap.GGeoCache, addMarker:false } but there was no love there either. Any help great fully appreciated! Where am I going wrong? -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] get value of checked checkboxes into a list

2008-01-10 Thread Duncan
() { $('#editOptions').click(function(){ alert($('#listProductID').val());//returns only the first value, selected or not }); }); Thanks -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] doc type error when using corner plugin

2007-11-01 Thread iain duncan
Hoping someone who knows about doctypes can help me out here. I am using kid templates with turbogears, so my html file has the following as it's first line. http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> Using Jquery and the jquery calendar plugin have been no problem, and I am also

[jQuery] Re: Checkbox hide/show

2007-10-24 Thread Duncan Heal
use show ("slow"). Greater minds will tell you why the checkbox doesn't become selected once clicked. I'd like to know myself. Duncan – – – – – – – – – – – – – Sprocket Web Design www.sprocket.co.nz – – – – – – – – – – – – – On 25/10/2007, at 7:51 AM, blg002 wrote:

[jQuery] Re: re[jQuery] place single word with image on the whole page

2007-10-23 Thread Duncan Heal
I obviously don't know the circumstance but you could use a SPAN HTML: This is some text CSS: p span { width: 100px; height: 200px; display: block; text-indent: -px; background: url(image.png); } Just an idea. Duncan – – – – – – – – – – – – – Sprocket Web D

[jQuery] Re: re[jQuery] place single word with image on the whole page

2007-10-22 Thread Duncan Heal
replace You can read up on html( val ) at: http://docs.jquery.com/Attributes/ html#val Personally I'd have a DIV and replace the contents of that rather than stick an image in a P. Trusts this helps Duncan – – – – – – – – – – – – – Sprocket Web Design www.sprocket.co.nz – – – – – – –

[jQuery] AJAX .load into an iframe - possible?

2007-10-15 Thread Duncan Anker
and I'm beginning to wonder if it is all some kind of extremely long-running April Fools' prank. There's got to be some simple way to do this, so what am I overlooking? TIA -- Duncan Anker Server 101, Web Hosting & E-Commerce http://www.server101.com

[jQuery] Re: jQPanels

2007-10-08 Thread Duncan Heal
Thanks. It's great the jQuery community has such talent. A suggestion I have would be to add the ability to specify an event handler. Maybe make it click by default but allow users to change it to hover or mousedown (two events I would find useful). Just an idea. Thanks again Duncan

[jQuery] Re: Keeping the calendar plug in open?

2007-10-07 Thread iain duncan
On Sun, 2007-07-10 at 19:32 +0100, Kelvin Luck wrote: > Hi Iain, > > I'm not sure which calendar plugin you are talking about but your email > prompted me to add the functionality you describe to my datePicker > plugin (something I've been meaning to do for a very long time and > luckily had a

[jQuery] Normal way of positioning an element?

2007-10-07 Thread iain duncan
I feel like I must be missing something obvious in the docs, but while I have found methods for finding out where an element is ( offset, position ) I don't see an obvious jquery method for placing an absolutely positioned element. What is the recommended way? And might I humbly suggest to the do

[jQuery] Keeping the calendar plug in open?

2007-10-06 Thread iain duncan
Apologies if I'm posting in the wrong place, I'm new to jquery. I've got the calendar plugin working ok, but would I would like it to do is to stay open all the time ( as in google calendar ). I don't see in the calendar docs any options or methods for preventing it from closing. Am I missing som

[jQuery] Re: the jquery logo

2007-10-03 Thread Duncan Heal
ahh, no there's not! Duncan On 4/10/2007, at 4:43 PM, Joel Birch wrote: There's also an alpha transparent png if you need one, here: http://users.tpg.com.au/plugins/superfish/img/jQuery-alpha-trans.png

[jQuery] Re: ajaxcfc - how to write default error handler

2007-09-25 Thread Duncan
rios I have tested, however this isnt an exhaustive list of possibilities. Duncan On 9/26/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > Duncan, > > I'll take a look at it. While jQuery is included in AjaxCFC, most people > on this list don't code in CF so you may

[jQuery] Re: ajaxcfc - how to write default error handler

2007-09-25 Thread Duncan
Can anyone help me out with overriding the default error handler in ajaxcfc? On 9/24/07, Duncan <[EMAIL PROTECTED]> wrote: > I am using the new ajaxcfc version in jquery and I want to know how to > override the default and write my own error handler. > > I am trying to catch

[jQuery] Re: ajaxcfc - if ajax call fails - how does it get handled?

2007-09-25 Thread Duncan
ay",""); > > $('#'+thisLoad).css("display","none"); >} > //sDumper(r); > }, > failure: function(r) { > $('#'+thisCheck).css("display","&quo

[jQuery] ajaxcfc - how to write default error handler

2007-09-23 Thread Duncan
I am using the new ajaxcfc version in jquery and I want to know how to override the default and write my own error handler. I am trying to catch a timeout. can anyone point me in the right direction? -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] ajaxcfc - if ajax call fails - how does it get handled?

2007-09-23 Thread Duncan
'+thisCheck).css("display",""); $('#'+thisLoad).css("display","none"); } //sDumper(r); } I cant find a failure equivalent to "success:". What about a timeout? How would I handle this? Thanks in advance! -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] Re: UI Photo Demo on Safari

2007-09-19 Thread Duncan Heal
Hi David I've heard somewhere that they are working on it. I think they're also discouraging posts to this list about UI though I'm sure they appreciate the feedback. Regards Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www

[jQuery] Re: jQuery UI already released?

2007-09-17 Thread Duncan Heal
Moo who? I'm glad I made the switch. jQ UI rocks. Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www.sprocket.co.nz - - - - - - - - - - - - - - - - - On 17/09/2007, at 3:01 PM, Kyle wrote: I am very excited about this. I hope to start on a small project for a class tonig

[jQuery] Re: timed events

2007-09-13 Thread Duncan
I am missing the # thanks On 9/14/07, Michael Geary <[EMAIL PROTECTED]> wrote: > > > From: Duncan > > > > But the following doesnt seem to work, how can I sort this out? > > > > for(var i = 0; i < r.length; i++){ > > //alert(r[i][

[jQuery] Re: timed events

2007-09-13 Thread Duncan
url: '...', > data: {id: ids}, > ..., > success: function(data) { > /* handle response, data will need to contain updated data > for each submitted id */ > } > }); > }, 30*1000)

[jQuery] timed events

2007-09-13 Thread Duncan
.ready(function(){ function for each of the id's and somehow fire them on a timed event? (I can work out how to do this with a mouseover). Sorry if this is fairly uncoherent, but I know what I need to achieve, just not sure which way to start! Any suggestions gratefully received! Thanks -- Du

[jQuery] Getting lazy with GET and changing STATE

2007-09-03 Thread Duncan Heal
m confused and I think that creating usable ajax-interfaces is vital to it's long term success (and not just sizzle). Have a good day! Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www.sprocket.co.nz - - - - - - - - - - - - - - - - -

[jQuery] Re: List of jQuery Resources

2007-09-03 Thread Duncan Heal
Thanks Rey - a useful resource of resources! Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www.sprocket.co.nz - - - - - - - - - - - - - - - - - On 4/09/2007, at 1:39 AM, Rey Bango wrote: Hi everyone, I've created a list of links that will hopefully help new jQuery

[jQuery] Re: Apple dashboard-style animation in jquery?

2007-08-30 Thread Duncan Heal
Hi Rolf Let us know how you go - I'd be interested to see how it comes out. I think the Dashboard implementation is very elegant. Something similar would make a great jQuery plug-in (but way beyond my skill). Regards Duncan - - - - - - - - - - - - - - - - - Sprocket Web D

[jQuery] Re: Apple dashboard-style animation in jquery?

2007-08-30 Thread Duncan Heal
this may help - it's a page flipping animation http://www.sitepoint.com/blogs/2007/07/20/javascript-sprite-animation- using-jquery/ Duncan - - - - - - - - - - - - - - - - - Sprocket Web Design www.sprocket.co.nz - - - - - - - - - - - - - - - - - On 31/08/2007, at 5:58 AM, rolfsf

[jQuery] Re: Getting the text value of the selected item in select box

2007-08-29 Thread Duncan
Thankyou! works like a charm On 8/30/07, Karl Rudd <[EMAIL PROTECTED]> wrote: > > Try using .text() on the selected option. e.g.: > > $('select option:selected').text() > > Karl Rudd > > On 8/30/07, Duncan <[EMAIL PROTECTED]> wrote: > > &g

[jQuery] Getting the text value of the selected item in select box

2007-08-29 Thread Duncan
I am struggling with getting the text label of the selected item in a select box. $('##Suburb').attr("value") will give me the id (e.g. 4) of the suburb drop down, but how do I get the label which would be "London" for example. Thanks! -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] Re: Cycle Plugin update

2007-08-23 Thread Duncan
7; }); }); This js error occurs after about 5 seconds, then clicking next pushes through a blank div, then moves the original one in so you end up with blank - 1st slide - blank - 1st slide - blank. I have jquery 1.1.3.1 Duncan On 8/24/07, Mike Alsup <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: Cycle Plugin update

2007-08-23 Thread Duncan
cument).ready(function(){ $('#newsTicker').cycle({ fx: 'scrollHorz', pause: 0, timeout: 5000, next: '#prevNews', prev: '#nextNews' }); }); On 8/23/07, Mike Alsup <[EMAI

[jQuery] Re: Cycle Plugin update

2007-08-22 Thread Duncan
next button - is that possible? Thanks duncan On 8/17/07, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > A+ Mr. Alsup! > > > > Joel Birch. > > > > Yes, thanks so much for these files, Mike! > > > > (A+)++ Mr. Alsup! > > > > > > -

[jQuery] Re: IE6 ActiveX bleed not working jQuery 1.1.3.1 jqModal r10

2007-08-16 Thread Duncan
super star - thankyou! On 8/17/07, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Duncan, > > Take a look here: > > http://dev.iceburg.net/jquery/jqModal/jqModal.css > > If you don't have these lines in your own stylesheet, or if you don't > include his,

[jQuery] Re: IE6 ActiveX bleed not working jQuery 1.1.3.1 jqModal r10

2007-08-16 Thread Duncan
Just in case this attachment didnt come thru I have put it up here http://www.sixfive.co.uk/jquery/modal.html No change either :-( it still doesnt seem to work. On 8/16/07, Duncan <[EMAIL PROTECTED]> wrote: > I have a problem with IE6, jqModal r10 and jQuery 1.1.3.1. > > I cant

[jQuery] AjaxCFC and jQuery Suggest

2007-08-14 Thread Duncan
JQuery ajaxCFC? Thanks in advance! -- Duncan I Loxton [EMAIL PROTECTED]

[jQuery] Re: Good Javascript editor or IDE?

2007-08-01 Thread Duncan
ne have? > Is there something sophisticated enough that can have intellisense > with jQuery or my own objects in external js files? > > Thanks, > Matt > > -- Duncan I Loxton [EMAIL PROTECTED]