[jQuery] Re: how can i access and manipulate iframe elements in ie6

2008-01-09 Thread rgrwkmn
Check out the $.frameReady jQuery plugin. I've been having trouble getting it to work properly with my site, but others have had great success and it works perfectly in the demo. http://ideamill.synaptrixgroup.com/?p=6 On Jan 9, 4:13 am, sigbin dan <[EMAIL PROTECTED]> wrote: > hi guys, > > im dev

[jQuery] Comparing Arrays

2007-11-01 Thread rgrwkmn
Is there a function that exists for the purpose of comparing two arrays and returning the values that are different? The arrays I'm comparing are likely to contain all the same values but in a different order. From what I read in the jQuery docs there is no function to compare array orders. I can

[jQuery] Re: IE & Safari suddenly not cooperating (jquery-1.1.4, interface-1.2, inestedsortables-1.0.1

2007-10-31 Thread rgrwkmn
Sorry, bad link. Here's the actual one: http://edigi.homelinux.com/dev/test/test.html On Oct 31, 3:44 pm, rgrwkmn <[EMAIL PROTECTED]> wrote: > I had full browser support for my NestedSortables list last night but > now it only works in firefox. It either has something to do wi

[jQuery] Re: Always on bottom

2007-10-31 Thread rgrwkmn
If the dynamic content on your page is wrapped in a relatively positioned div, as well as the footer, then it should get bumped down to the bottom whenever things change.

[jQuery] IE & Safari suddenly not cooperating (jquery-1.1.4, interface-1.2, inestedsortables-1.0.1

2007-10-31 Thread rgrwkmn
I had full browser support for my NestedSortables list last night but now it only works in firefox. It either has something to do with the included js files or some syntax error on my part that I can't see. I stripped it down to just the includes and the list in a test page: http://edigi.homelinux

[jQuery] Re: multiple selects, hiddens and text inputs with same name

2007-10-08 Thread rgrwkmn
bar'+i; > }); > > On Oct 6, 2:47 am, rgrwkmn <[EMAIL PROTECTED]> wrote:> In addition to > Wizzud's solution: > > Since it seems that you want to be able to access each select with the > > name "foo" individually and change their valu

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-08 Thread rgrwkmn
$.get is the Ajax call and .find gets all the p tags. They pretty much do all the work for you. I'm using .appendTo() as an example of something you could do with this. $.get("hillbilly.html", function(data){ $(data).find('p').appendTo('#someId'); }); Once the dat

[jQuery] Re: multiple selects, hiddens and text inputs with same name

2007-10-06 Thread rgrwkmn
In addition to Wizzud's solution: Since it seems that you want to be able to access each select with the name "foo" individually and change their values individually you could try something like this: $('select[name=foo]').each(function(i){ $(this).addClass('foo'+i); }); This

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-05 Thread rgrwkmn
I just started using jQuery and have so far only run into problems involving loading images and changing the sources of images. My work around is not appending new image tags or changing the img src, but instead creating divs with background images or changing the background image of div tags. t

[jQuery] Re: Manipulating DOM

2007-09-30 Thread rgrwkmn
If you only want to do this once on the page try something like this: HTML execute the function on mouseover someurl JS ---get your text stored in an html file (could be any type of text file really) and, once it's loaded, append that data into the proper div, using its id. function readMore(