[jQuery] Simple .html problem in 1.4

2010-01-18 Thread Bruce MacKay
ppens when 1.4 is used. Any idea of where I should be looking for a solution? Thanks, Bruce

[jQuery] Re: Reset range slider values

2010-01-18 Thread Bruce
For single silder this works jQuery(id).slider('option', 'value', 1); You can see the handle is moved back to the start position. Thanks. On Jan 18, 9:49 am, Bruce wrote: > I setup a slider using > jQuery(id).slider({ range:true,  min: 1, max: 100,  step: 1, value

[jQuery] Reset range slider values

2010-01-18 Thread Bruce
orks jQuery(id).slider('option', 'values', [1,100]); //does not work! The min and max are reset but the handles stay where they are. Is this a bug? For single silder this works jQuery(id).slider('option', 'value', 1); Thanks! Bruce

[jQuery] jQuery Equivalent of Prototype Function.bind

2010-01-05 Thread Bruce
Is there a jQuery way of doing this Prototype bind? var func = myFunction; setTimeout(func.bind(this), 1000); Thanks.

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2010-01-04 Thread Bruce
this alpha 2 fixed stack overflow. Thanks On Jan 4, 4:32 pm, Bruce wrote: > I need 1.4 for the bind object feature mentioned in this arctile: > > http://brandonaaron.net/blog/2009/05/12/jquery-edge-bind-with-a-diffe... > > I will check outhttp://blog.jquery.com/2009/12/18/jq

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2010-01-04 Thread Bruce
I need 1.4 for the bind object feature mentioned in this arctile: http://brandonaaron.net/blog/2009/05/12/jquery-edge-bind-with-a-different-this I will check out http://blog.jquery.com/2009/12/18/jquery-14-alpha-2-released/. It is 4 days older than the nightly build. Thanks On Jan 4, 4:11 pm,

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2010-01-04 Thread Bruce
Yes. I could not even load it in IE. I got statck overflow 1456 error in IE. I heard it was fix but the fix is not in nightly build. FF , Chrome work ok. Thanks Bruce On Jan 4, 3:38 pm, "Jeffrey Kretz" wrote: > Have you tested the 1.4 nightly with your code?  Any i

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2010-01-04 Thread Bruce
January 14th is only 10 days away. Hope it will be on time. On Dec 31 2009, 4:13 pm, Šime Vidas wrote: > I read somewhere, on January 14th

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Bruce
Thanks for the info. I will check out the new beta to fix my stack overflow. On Dec 31, 2:38 pm, Dave Methvin wrote: > There should be an announcement of another beta within a few days. The > stack overflow has been reported/fixed.

[jQuery] Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Bruce
Does anybody know when jquery 1.3.3 or 1.4 will be released? I am using 1.4 pre but I got statck overflow 1456 error in IE. Thanks Bruce

[jQuery] parent selectors (I think) and tabs

2009-12-20 Thread Bruce MacKay
$(this).removeClass('current'); $(this).parent().children('div:nth-child('+curChildIndex+')').fadeIn ('normal',function() { $(this).addClass('current'); }); }); return false; }); }); Any help will be appreciated a lot THanks, Bruce

[jQuery] visible divs and selectors

2009-12-11 Thread Bruce MacKay
{ //console.log("2 " + ej); $("#"+ej).show(500); }; } How do I stop the refresh/flicker - or how can I approach this in a better way? Thanks, Bruce

[jQuery] New question

2009-12-04 Thread bruce
e accomplished.. My test is going to simulate students who would be taking classes, and matching the books required for their classes... thoughts/comments are appreciated.. thanks -bruce

[jQuery] Re: Binding a function to >1 'a' tag - which approach is best?

2009-11-28 Thread Bruce MacKay
Thanks Michel - I appreciate the time you took here to provide such a useful answer - javascript algebra in essence. Cheers, Bruce On Nov 28, 12:18 am, Michel Belleville wrote: > Now let's try to simplify this a bit : > > $('a.c_update').each(function() { > var $a =

[jQuery] Binding a function to >1 'a' tag - which approach is best?

2009-11-27 Thread Bruce MacKay
e;}); }); method #2 $('a.c_update').bind("click",function() {doStuff ('getitem',this.id);return false;}); Thanks, Bruce

[jQuery] Re: Accordion, fieldset and selectors question

2009-11-27 Thread Bruce MacKay
Excellent Adriana - thanks very much - also for quietly pointing out that I'd forgotten the return false bit. Cheers/Bruce On Nov 27, 2:45 pm, Adriana wrote: > Hi Bruce, > > Try this: > >     $('.accord > h6').click(function() { >         $(this).toggleC

[jQuery] Accordion, fieldset and selectors question

2009-11-26 Thread Bruce MacKay
dset. $('.accord > h6').click(function() { $(this).addClass('expand_group'); $(this).next('fieldset').slideToggle('fast').siblings ('fieldset:visible').slideUp('fast'); }); I'd really appreciate some direction to a solution if possible. Thanks, Bruce

[jQuery] Superfish Examples

2009-11-08 Thread Bruce A
This post is intended for the author of Superfish (Joel Birch)... As a relative novice to css xhtml, I endeavor to research and then use best practice code wherever I can. It helps me to not get into any bad habits and to see how things 'should be done'. Necessarily this implies I may not be the a

Re: [jQuery] Re: SimpleModal problem in IE7

2009-11-01 Thread Bruce MacKay
Excellent - Thanks very much Eric, I appreciate your attention to this - I rely on your brilliant plugin on several sites. Cheers, Bruce At 02:45 a.m. 31/10/2009, you wrote: I fixed the issue and released 1.3.3[1]. I updated the demo downloads, but all you need to do is use the newest

[jQuery] SimpleModal problem in IE7

2009-10-29 Thread Bruce MacKay
it occurs with mine. Anyone else noticed this problem? Thanks, Bruce

[jQuery] Superfish - arrows & top menu width

2009-10-25 Thread Bruce A
Apologies if this is a css issue and I am barking up the wrong tree... It seems to me that the arrows which are added create an additional width on the menu elements. I would like to specify a fixed width for the top elements in my menu. It appears that the arrows are added automagically by the

[jQuery] Printing contents of a tab within a lightbox-clone

2009-09-05 Thread Bruce MacKay
nt; opacity:1.0!important; } #printresults is the div within a tab that I want printed. But when I print (via an 'a' tag window.print() link) I get a magnificient blank page. Ideas/solutions/leads? Thanks/Bruce

[jQuery] Re: toggle and logic confusion

2009-08-12 Thread Bruce MacKay
t I'm trying to do not an accordion. Thanks for your input, nevertheless. Bruce At 09:32 p.m. 12/08/2009, you wrote: Hi Bruce are trying to do something like an accordion. http://jqueryui.com/demos/accordion/ I tried to do what you described a few days ago and then found the jquery

[jQuery] toggle and logic confusion

2009-08-12 Thread Bruce MacKay
ir associated div to become visible and the currently visible div to be hidden. I'd appreciate someone illuminating a path to a solution for me. Thanks/Bruce 1$('#fsheet').find('.hideme').hide().end(); 2$('a.showme').each(function(i) {

[jQuery] Re: Identifying the type of parent

2009-06-30 Thread Bruce MacKay
The answer I needed - and found in the jQuery documents - was var parentTag = $('#'+ni).parent().get(0).tagName; I should have looked more closely sooner. Cheers, Bruce At 04:58 p.m. 30/06/2009, you wrote: Hello folks, I have a function, triggered when a particular type

[jQuery] Identifying the type of parent

2009-06-29 Thread Bruce MacKay
nce I would want the new text to be presented after the closing list item tag. How do can I distinguish whether the clicked link is within a p tag or within an li tag? Thanks, Bruce function fnGetSnippet(ni){ $.get("../scripts/ajax_fsheets.asp?id=getDD&ddID=" + ni

[jQuery] Re: Removing an emptied paragraph from the DOM

2009-06-20 Thread Bruce MacKay
input. Cheers, Bruce At 11:40 p.m. 20/06/2009, you wrote: How about? $('.buggybox').next('p').remove(); Maurício -Mensagem Original- De: <mailto:b.mac...@massey.ac.nz>Bruce MacKay Para: <mailto:jquery-en@googlegroups.com>jquery-en@googlegroups.com Enviad

[jQuery] Removing an emptied paragraph from the DOM

2009-06-20 Thread Bruce MacKay
- it is 0, yet the remove doesn't happen. Thanks, Bruce var parnt = $(this).parent(); //the parent p tag containing the image to be processed $(this).insertBefore(p).wrap(""); if (parnt.length=0) { parnt.remove(); }

[jQuery] History and ajax has me stuck

2009-06-16 Thread Bruce MacKay
to #ebook. Any help would be appreciated - even if it is a suggestion to try a different approach. Thanks, Bruce $(document).ready(function() { $.ajaxHistory.initialize(); var pgname = $('a.eb0').attr('id'); fnGetEbookFile(pgname); }); function fnGet

[jQuery] Re: Moving a div container from within to before a p container

2009-06-08 Thread Bruce MacKay
} else if (title.length>0){ $(this).after("" + title + ""); }; $("#g"+i).addClass("img" + postn).css({width:width + 'px'}); }); } Thanks again, Bruce At 11:14 a.m. 7/06/2009, you

[jQuery] Moving a div container from within to before a p container

2009-06-06 Thread Bruce MacKay
how to shift the processed image from within the p container to immediately before it (so that the created div is not within a p container) I'd appreciate help in this next step. Thanks, Bruce function fnDoImages() { $('img.imgposl,img.imgposr,img.imgposc,img.tblposl,img

[jQuery] Re: this.appendChild(E) error

2009-04-19 Thread Bruce MacKay
Thanks Jordon - but alas this adjustment made no difference to IE. Bruce At 09:57 a.m. 20/04/2009, you wrote: Try doing $("#editorbox").fadeIn(500).html(field.doeditor); From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Bruce MacKay Sent: Sunday

[jQuery] this.appendChild(E) error

2009-04-19 Thread Bruce MacKay
of the code is below - IE chokes at the line indicated. I have loaded the json field 'doeditor' with nothing and with simple text and the error is still thrown, so I don't believe it is anything in the field per se that is causing the problem. Any directions gratefully acce

[jQuery] [Quite OT] charsets, chr values, & errant characters

2009-03-09 Thread Bruce MacKay
the p tags of the blank line that the editor inserts. How can I solve this problem? How can I identify the character so that I can strip it out of the data stream before it is stored? Thanks - Bruce

[jQuery] Re: Cancelling the behaviour of a link-initiated function

2009-02-26 Thread Bruce MacKay
ent).ready(function() { $('a.txtload').bind("click.txtload",function() { var target = $(this).attr('id'); fnGetEbookFile(target); $('#'+target).unbind('click.txtload'); }); }); Cheers, Bruce At

[jQuery] Cancelling the behaviour of a link-initiated function

2009-02-25 Thread Bruce MacKay
.removeClass('txtload'); before the call to fnGetEbookFile (line 2 of the code below) to remove the txtload from the specific link that has been clicked, but despite Firebug showing that the class has been removed, its behaviour on that link continues. Thanks, Bruce $(document).rea

[jQuery] testing

2009-02-19 Thread bruce
sorry for the test guys!!

[jQuery] Re: Duplicating the last row of a table

2009-02-12 Thread Bruce MacKay
Thanks RobG - sorry about the layout - I didn't send it like it appeared. I didn't notice the missing tr tags and wouldn't have thought of the tbody + id solution. Cheers, Bruce At 06:48 p.m. 13/02/2009, you wrote: On Feb 13, 1:36 pm, Bruce MacKay wrote: > Hello f

[jQuery] Duplicating the last row of a table

2009-02-12 Thread Bruce MacKay
as the last tr in the table. Is there a way to satisfy the interpretation of all three browsers? Thanks, Bruce function duplicateRow(){ var clonedRow = $("#question_table tr:last").clone(); var iRowID = parseFloat(clonedRow.attr("id").replace('t'

[jQuery] Re: I can't get Shadowbox to fire!

2009-02-07 Thread Bruce MacKay
That's strange - Firebug is not displaying any error messages here. I've "turned on" a load-the-language command - it's made no difference to my display - what about from your end? Cheers, Bruce At 11:20 p.m. 7/02/2009, you wrote: I'm getting "No Shado

[jQuery] I can't get Shadowbox to fire!

2009-02-07 Thread Bruce MacKay
is.htm and letting me know what I'd doing wrong. For example, clicking on the "site" hyperlink should bring up a Shadowbox containing an image - I just get a new page containing the image Thanks Bruce

[jQuery] Re: the new whitehouse.gov - jQuery powered

2009-01-20 Thread bruce
hi andy... just how do you know this are you going from the fact that there were no actual attacks on the US? if this is the case, can we also say he kept us safe from killer bee attacks, or from attacks of killer asteroids? or should we blame him for the serious numbers of what i call terro

[jQuery] auto testing/parsing/scraping javascript/ajax webistes

2009-01-12 Thread bruce
Hi List! Trying to get my head/hands around how to web scrape/test websites that use javascript/ajax libraries... Are there any tools/suggestions that you might suggest in this area. Basic/initial research for google suggests that things like seamonkey, and/or headless browser apps might work. A

[jQuery] What is IE7 barfing at this js?

2008-12-29 Thread Bruce MacKay
NaN --- 23" at the second loop and so on. FF, Opera, and Safari all handle the code without problem - can anyone help me understand what IE7 is getting upset about? Thanks, Bruce

[jQuery] Selector difficulty/removeClass

2008-12-11 Thread Bruce MacKay
lement's position or order in the div in any way). Can someone help me with the necessary selectors to identify the label elements in the div (so as to invoke a .removeClass) - I'm completely stumped. Thanks, Bruce

[jQuery] Re: .serialize and form elements in tables

2008-10-03 Thread Bruce MacKay
the form elements, everything works properly. Thanks, Bruce At 02:07 p.m. 4/10/2008, you wrote: So are you calling it via $("#processthis").serialize()? Serialize doesn't fire, you just call it. If you set a breakpoint in Firebug in serialize, does it ever get there?

[jQuery] Re: .serialize and form elements in tables

2008-10-03 Thread Bruce MacKay
I appreciate the input (no pun intended!) but that workaround didn't do the job. Cheers, Bruce At 01:54 p.m. 4/10/2008, you wrote: a quick workaround that springs to mind is $ ("#form :input").serialize(); On Oct 3, 6:26 pm, Bruce MacKay <[EMAIL PROTECTED]> wrote: &g

[jQuery] Re: .serialize and form elements in tables

2008-10-03 Thread Bruce MacKay
Thank you Dave. The tables were formed fine (I'd checked that) but I had managed to include duplicate form IDs in the page and once that was fixed, the .serialize() is now working as expected. Cheers, Bruce At 02:54 p.m. 4/10/2008, you wrote: That code looks okay. Have you run the

[jQuery] .serialize and form elements in tables

2008-10-03 Thread Bruce MacKay
cannot find any clues in the jQuery documents or this list's archives. I'd appreciate some illumination here. Thanks, Bruce

[jQuery] Getting the id of the next form

2008-09-30 Thread Bruce MacKay
x27;m afraid that I just don't yet understand selectors and traversing well enough to nut this out myself. Thanks, Bruce

[jQuery] Re: [jEditable] dynamically updating a parameter value - FIXED

2008-09-29 Thread Bruce MacKay
Fixed the problem. My earlier attempt at unbinding did not work because I didn't get the syntax correct - now with unbind() the problem is solved. Thanks Mike for prompting me to revisit the area. Cheers, Bruce At 07:43 a.m. 30/09/2008, you wrote: Hello Mike, I'm not sure

[jQuery] Re: [jEditable] dynamically updating a parameter value

2008-09-29 Thread Bruce MacKay
uot;.edit").editable("scripts/ajax_tasks.asp?id=jedit&fID="+fID, { indicator : "", submit: 'OK', id: 'jID', submitdata : function() { return {foo: fID} }, type : '

[jQuery] [jEditable] dynamically updating a parameter value

2008-09-29 Thread Bruce MacKay
Hello folks, I want to dynamically update a parameter value when using jEditable. The following function loads a div on the current page with new content relating to an item ID of fID (selected from a list of items in another div on the page). I then use jEditable to allow the user to update

[jQuery] Disappearing accordion elements

2008-09-08 Thread Bruce MacKay
Ideas/suggestions/solutions gratefully accepted. Cheers, Bruce

[jQuery] Validating a form in a tab

2008-07-11 Thread Bruce MacKay
bsload', function(e, ui) { var errors = $('div.errors'); $("#editor_form").validate(); }); This code throws no errors but also does not respond to deliberate validation errors entered into the input elements of the form and the form submitted. Can anyone spot my error. Thanks Bruce

[jQuery] Re: IE7 doesn't properly download images for jQuery cycle?

2008-07-03 Thread Bruce
I use iQuery to ajax this abc.html: My text Only "My text" is loaded in to IE 7. FF loads the image so you can see it. This is my ajax code: $("#dsp1").load("abc.html"); Why IE can not do this simple thing?

[jQuery] $("#dsp1").load(url) not working in IE7?

2008-07-03 Thread Bruce
uot;. Firefox shows everything correctly. (some text and an image that can be clicked on). Thanks. Bruce

[jQuery] Re: Check if window exists before opening

2008-07-02 Thread Bruce MacKay
}else { winRef.focus(); return false; } }); This code does the necessary check, but it won't move focus to the existing opened window (that contains the help file). What am I not doing correctly? Thanks, Bruce At 01:11 p.m. 3/07/2008, you wrote:

[jQuery] Check if window exists before opening

2008-07-02 Thread Bruce MacKay
$("a.openW").click( function() { window.open(this.href); return false; }); But I want to first make sure that a window containing the help file isn't already open before a new one (another one) is opened. Help/direction appreciated. Thanks, Bruce

[jQuery] Re: The Cycle plugin and "residue"

2008-07-01 Thread Bruce MacKay
Thank you Mike - and my apologies - as soon as I saw your response I remembered that I'd posed the same question several months ago and had received the solution then. So much to remember in such little space! ;-) Cheers, Bruce At 01:20 p.m. 2/07/2008, you wrote: On Jul 1, 8:

[jQuery] The Cycle plugin and "residue"

2008-07-01 Thread Bruce MacKay
4. If a third show is loaded, then for each slide of the new show, three titles are shown (2 of which are of the previous shows). Am I not "flushing" something properly? Thanks for any assistance, Cheers/Bruce

[jQuery] Re: jQuery Cycle question

2008-05-27 Thread Bruce MacKay
Thanks Mike, that did solve the problem. Cheers/Bruce At 11:25 a.m. 28/05/2008, you wrote: > Hello Mike, > > Thanks for your interest. > > A link is here...http://ramosus.massey.ac.nz/jQuery.htm > > Cheers/Bruce > Since the first slideshow was never explicitly stopp

[jQuery] Re: jQuery Cycle question

2008-05-27 Thread Bruce MacKay
Hello Mike, Thanks for your interest. A link is here... http://ramosus.massey.ac.nz/jQuery.htm Cheers/Bruce At 12:24 a.m. 28/05/2008, you wrote: > In its simplest form my problem is this. Suppose I have two > slideshows, A and B. Slideshow A runs properly. However, when I >

[jQuery] Re: IE7, simple AJAX, and nothing - fixed!

2008-05-12 Thread Bruce MacKay
Sorry folks - I was looking in the wrong place - the file being loaded had a malformed div tag and IE7 was responding to that. Cheers, Bruce At 11:45 p.m. 12/05/2008, you wrote: On 12 Mag, 12:57, Bruce MacKay <[EMAIL PROTECTED]> wrote: > Hello folks, uhm... it's kinda str

[jQuery] IE7, simple AJAX, and nothing!

2008-05-12 Thread Bruce MacKay
} }); } As far as I can determine, the ajax call is successful - the alert box show the returned html - but the display within the div "stext" is not successful. I can see the "stext" div in Firebug, so it is not as if its target doesn't exist. Thanks, Bruce

[jQuery] Why won't this get the image's width?

2008-05-04 Thread Bruce MacKay
The relevant portion of the HTML being returned is... class="pad5" alt="">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis in ipsum. Donec faucibus sodales lacus? Any ideas? Is it, perhaps, that if the image hasn't loaded before the code is processed, then the width of theImage will be 0. If so, how do I code around this issue? Thanks, Bruce

[jQuery] Finding the size of an image

2008-05-02 Thread Bruce MacKay
quot;width",img_width); } The alert call displays 0 all the time. My mistake is??? Thanks, Bruce

[jQuery] loading metadata with Ajax

2008-04-19 Thread Bruce McKenzie
ved that problem. However, the scripts don't appear to be evaluated or recognized by the metadata plugin when loaded via Ajax. If I display the html in the Firebug console, I can see the script/json text -- but the scripts don't show up as objects in the DOM. Thx for suggestions. Bruce McKenzie

[jQuery] Re: check/uncheck via toggle

2008-04-03 Thread Bruce MacKay
ange was fired, but the checkbox was left unchanged. Anyway, with the solutions you kindly provided, that is now neither here or there. Cheers, Bruce - At 03:52 p.m. 3/04/2008, you wrote: *head smack* I missed that version of the function. It's definitely not something I've u

[jQuery] IE and onClick - not!

2008-04-03 Thread Bruce MacKay
as a problem with dynamically produced "onClicks", but that's about as far as my understanding goes. Is this problem a total block and/or are there alternative approaches I should be taking to pass the variables to the ajax call that does the final deletion? Thanks, Bruce

[jQuery] check/uncheck via toggle

2008-04-02 Thread Bruce MacKay
ate({backgroundColor:'#9C3'},2000).animate({backgroundColor:'#E0F88F'},1000); } ); Thanks Bruce

[jQuery] Re: File uploading with the jQuery form plugin

2008-04-01 Thread Bruce MacKay
Hi Mike, I've finally seen my problem - 6 hours after starting - the forms plugin that I was using was an old version. I downloaded the most recent version, changed the options statement appropriately, and voila - the form works as expected. Sorry for the false report. Cheers/Bruce

[jQuery] File uploading with the jQuery form plugin

2008-04-01 Thread Bruce MacKay
pe: 'html',before: showUploadRequest, after: showUploadResponse}; $('#upload_form').submit(function() {$(this).ajaxSubmit(options);return false;}); } }); }; Is there anything here that I'm overlooking? Thanks, Bruce

[jQuery] Re: A simple loop - but I can't do it

2008-03-07 Thread Bruce MacKay
Thanks Jason - appreciated. At 03:33 p.m. 8/03/2008, you wrote: I think you're looking for something more like this for that last bit: $('#sshoweditor fieldset').each(function(i){ $(this).attr('id','fs' + i); }); - jason On Mar 7, 8:51 pm, Bruce Mac

[jQuery] A simple loop - but I can't do it

2008-03-07 Thread Bruce MacKay
#howmany").attr("value",n); var z = 0; $("#sshoweditor fieldset").each(function(t){ ( { "id" : "fs" + z} ); z=z+1; }); My code doesn't throw an error - but it doesn't produce a result either. Can someone guide me here. Thanks Bruce

[jQuery] Re: Replacing a string - why doesn't this work?

2008-02-13 Thread Bruce MacKay
Thank you Andrea for the solution - I'd never have gotten there. Cheers, Bruce At 10:05 p.m. 13/02/2008, you wrote: On 13 Feb, 09:05, Bruce MacKay <[EMAIL PROTECTED]> wrote: > s=clonedRow; > var myString = 'showImageList'+iRowID; >

[jQuery] Replacing a string - why doesn't this work?

2008-02-13 Thread Bruce MacKay
+ ' ' + iNewID ); s=clonedRow; var myString = 'showImageList'+iRowID; var myString2 = 'showImageList'+iNewID; var myString3 = s.replace(myString,myString2); The error message I get is s.replace is not a function. Can someone spot my mistake, or suggest an alternative approach Thanks Bruce

[jQuery] clone and replacing one string for another

2008-02-05 Thread Bruce MacKay
told that clonedRow.replace is not a function. I'd appreciate some help here. Thanks, Bruce

[jQuery] Re: getting the ID number of a cloned table row

2008-02-05 Thread Bruce MacKay
Thanks Charles for this full and complete response - I very much appreciate it. Cheers Bruce At 09:27 a.m. 6/02/2008, you wrote: Bruce MacKay wrote: : Hello folks, : : I'm trying to duplicate a row of an existing table using a function : adapted from : http://www.nabble.com/Add-Tabl

[jQuery] getting the ID number of a cloned table row

2008-02-04 Thread Bruce MacKay
tNewRowId} ); $( "#answer"+ intCurrentRowId , clonedRow ).attr( { "name" : "answer" + intNewRowId} ); // Add to the new row to the original table $( "#myTable").append( clonedRow ); }; Thanks, Bruce

[jQuery] Autogrow() "pulses" in IE7

2008-02-03 Thread Bruce MacKay
ideas? Thanks, Bruce

[jQuery] Re: Shadowbox and ajax-returned content - solved

2008-01-29 Thread Bruce MacKay
s for not doing my homework properly. Cheers, Bruce At 05:25 p.m. 30/01/2008, you wrote: At 04:59 p.m. 30/01/2008, you wrote: Any idea/suggestion to allow me to achieve what I'm seeking here? Can you post a demo link? That would be most helpful. Sorry, I cannot do that for a couple of

[jQuery] Re: Shadowbox and ajax-returned content?

2008-01-29 Thread Bruce MacKay
k, but that isn't applicable here because of the new content that is being bought into the page (I did try including the Shadow.init() call in the document.ready block when the page is first called, but that didn't make any difference to the final outcome) I hope this makes my context a little clearer, Thanks, Bruce

[jQuery] Shadowbox and ajax-returned content?

2008-01-29 Thread Bruce MacKay
xpected, so apparently I'm not rebinding (if that's the correct word) the new content to Shadowbox. Any idea/suggestion to allow me to achieve what I'm seeking here? Thanks Bruce

[jQuery] Re: styleswitcher problem 2 (aka "$ is not a function")

2008-01-28 Thread Bruce MacKay
ually on the disk and was actually being found by the page - and it was. Let's hope we can make hay this afternoon. Cheers, Bruce At 02:29 a.m. 29/01/2008, you wrote: Hi Bruce, A link to a page that we can look at would be very helpful. I wonder if your $('a.link1').bind(&#x

[jQuery] styleswitcher problem 2 (aka "$ is not a function")

2008-01-28 Thread Bruce MacKay
"$ is not a function" Cheers Bruce Date: Mon, 28 Jan 2008 22:26:03 +1300 To: jquery-en@googlegroups.com From: Bruce MacKay <[EMAIL PROTECTED]> Subject: styleswitcher problem Hello folks, I've just belatedly upgraded to the latest version of jQuery and am finding old plug

[jQuery] styleswitcher problem

2008-01-28 Thread Bruce MacKay
(c) switchStylestyle(c); [Actually, the first line in Kevin's code is $('.styleswitch').click(function() but I have a recollection that .bind('click',...) is now the preferred format.] Can anyone help me here please (or point me at another stylesheet switching approach). Thanks Bruce

[jQuery] clueTip and retrieved JSON strings

2008-01-23 Thread Bruce MacKay
'a.jt') line, when I click the hyperlink, the input text box is populated with "false". (The clueTip works fine!) Can someone show me the error of my ways please. Thanks, Bruce

[jQuery] Re: Debugging jQuery's ajax call

2007-10-24 Thread Bruce Wang
Have you heard about Firebug? a firefox plugin On 10/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm trying to debug a js function, it seems HTTP proxy monitor does > not monitor XMLHTTPrequest/response, any tools in OS X that can do the > job? Thanks. > A.C. > > -- simple

[jQuery] Re: Updating the id of an a tag

2007-10-17 Thread Bruce MacKay
Thanks Glen, for both the solution and useful tip. Cheers, Bruce At 02:13 p.m. 17/10/2007, you wrote: Instead of .id() try attr("id",yourStringHere) One tip is to make your string in a variable right before it. That way you can easily alert the string to see if its coming up

[jQuery] Updating the id of an a tag

2007-10-17 Thread Bruce MacKay
version update of jQuery, but perhaps it was only working previously in my dreams. Any help appreciated. Cheers Bruce function editAppAsset(ej) { var temp=new Array(); temp=ej.split('_'); var pb = temp[1]; var iA = temp[2]; $("#wrka").show();

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-04 Thread Bruce MacKay
Oh, was that bit important ;-) Thanks Leandro/Wizzud, I feel a bout of the "wood for the trees" cliche coming on. Cheers, Bruce At 08:01 a.m. 4/10/2007, you wrote: Yeah Bruhce, how Wizzud have said, you need to include the jquery.lightbox-0.1.css. You have just included a st

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-03 Thread Bruce MacKay
of my page, never on top of it. Any illumination of my error would be appreciated. Cheers, Bruce > > > > On Sep 23, 10:46 pm, Leandro Vieira Pinho <[EMAIL PROTECTED]> > > > wrote: > > > > >jQuerylightBoxpluginis a powerful and simple way to show image

[jQuery] Re: Tag Cloud

2007-09-20 Thread Bruce MacKay
At 02:28 a.m. 20/09/2007, you wrote: Is there an implementation of Tag Cloud css or logic using jquery? This might help you: http://www.nabble.com/-Plugin--DynaCloud-Plugin-tf4254840s15494.html#a12109312

[jQuery] Re: ajaxForm and validate question

2007-09-11 Thread Bruce MacKay
that (among other things) calls ajaxSubmit(). ajaxSubmit() is where the form submission actually happens." doesn't really make sense to me. If ajaxForm calls ajaxSubmit via an event handler, then why it is necessary to explicitly "call" ajaxSubmit? Cheers, Bruce At 12:58 p

[jQuery] ajaxForm and validate question

2007-09-11 Thread Bruce MacKay
fired. What am I missing here? Thanks Bruce $("#cform").validate({ errorContainer: errors, errorLabelContainer: $('ol', errors), wrapper: 'li', submitHandler: function(form) { $("#cform").ajaxForm(options); }

[jQuery] IE6 ajax oddity

2007-08-08 Thread Bruce MacKay
k" - the server receives the instruction and does the processing, but the return ajax stream doesn't seem to arrive. Any ideas? Thanks/Bruce

[jQuery] Re: jCarouselLite problem

2007-08-05 Thread Bruce MacKay
Hi Ganeshji, I tried that but alas, it did not fix the problem. Cheers/Bruce At 09:26 a.m. 6/08/2007, you wrote: bruce, i haven't used jcarousellite with thickbox, but can you try something... Instead of using document.ready to initialize the carousel, use a

[jQuery] Re: jCarouselLite problem

2007-08-05 Thread Bruce MacKay
Hi Ganeshji, I specified these attributes but the problem still remains. A test page is at http://www.thomasbaine.com/thetuis.asp (click on the "Look at our pictures") link. Help would be appreciated. Cheers/Bruce At 09:43 a.m. 4/08/2007, you wrote: i think, u might not be spec

[jQuery] jCarouselLite problem

2007-08-03 Thread Bruce MacKay
.prev", visible: 2, scroll: 2 }); }); I'm sorry, but I just can see what it is that I'm doing wrong. Suggestions? Thanks, Bruce

  1   2   >