[jQuery] Re: IE6 crashes while loading xml through $.get function

2008-11-19 Thread bytte
Any idea why IE6 keeps crashing? On 14 nov, 14:45, bytte [EMAIL PROTECTED] wrote: I'm loading an xml file of 88kb through jQuery's GET function. But IE6 crashes. Is there a better way to load an xml file than the one I'm using? Code below: $(document).ready(function(){         $.get

[jQuery] IE6 crashes while loading xml through $.get function

2008-11-14 Thread bytte
I'm loading an xml file of 88kb through jQuery's GET function. But IE6 crashes. Is there a better way to load an xml file than the one I'm using? Code below: $(document).ready(function(){ $.get(personeel.xml,function(xml){ var naam = new Array();

[jQuery] Some help with adding form elements to dom in array notation

2008-10-29 Thread bytte
I have a form that contains input elements whose name is in the array notation e.g.: input name=example[news][1] .../ input name=example[news][2] .../ ... I use jQuery to dynamically add new input elements to the dom by copying the previous element. However, that leaves me with the following:

[jQuery] hiding page elements instantly on page load

2007-12-06 Thread bytte
Hi guys, I use php to fetch a menu out of a mysql database. Basically the menu is made up of a lot of nested unordered lists (ul). I'm using jQuery to hide any submenu. This means that when a user visits the webpage he only sees the first ul. When he clicks a li, the submenu (again an ul) is

[jQuery] Re: hiding page elements instantly on page load

2007-12-06 Thread bytte
Thanks guys. I use the document.ready function. Actually, it only happens on IE (both 6 and 7), not on Firefox or Safari. I used the display:none css rule tiphipps pointed out and now I have the opposite problem: the current menu is hidden and after a second pops out. It's not ideal, but it's a

[jQuery] return true/false

2007-11-29 Thread bytte
I have the following jquery code $('.menu li').click(function() { $(this).children(ul).slideDown(fast); $(this).siblings(li).children(ul).slideUp(fast); if ( $(this).children(ul).length ) {

[jQuery] Re: Jquery and safari

2007-10-24 Thread bytte
Can you post your jquery code? I had the same problem and it appeared to be wrongly defined functions. On 24 okt, 09:05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am running safari 2.0.4 and jquery 1.2.1. None, and I mean none of my javascript works in safari. All of it works fine in

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-07 Thread bytte
Hi To, a bit higher is my solution to the problem. You lose a bit of the fancy effect, but it's ok until the bug gets solved i guess. On 7 okt, 14:40, To [EMAIL PROTECTED] wrote: On Oct 6, 7:36 pm, muccy [EMAIL PROTECTED] wrote: $(#photo).fadeIn(slow); $(#photo).show;

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-05 Thread bytte
with that. cheers lukas Am 04.10.2007 um 10:34 schrieb bytte: I have made a very basic slideshow, with help from this list, that looks for images in a database, then displays them. Here's the link: http://www.sum.be/project/item.php?item=14ID=39〈=1 (navigate through the pics by using the small

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-05 Thread bytte
some) do work. On 4 okt, 10:34, bytte [EMAIL PROTECTED] wrote: I have made a very basic slideshow, with help from this list, that looks for images in a database, then displays them. Here's the link:http://www.sum.be/project/item.php?item=14ID=39〈=1 (navigate through the pics by using the small

[jQuery] calling all jQuery Safari wizards!

2007-10-04 Thread bytte
I have made a very basic slideshow, with help from this list, that looks for images in a database, then displays them. Here's the link: http://www.sum.be/project/item.php?item=14ID=39〈=1 (navigate through the pics by using the small arrows to the right of the picture) It works ok in all tested

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-04 Thread bytte
Thanks for the tip John. On 4 okt, 18:48, John Beppu [EMAIL PROTECTED] wrote: You might want to get on irc and ask on #webkit on irc.freenode.net . On 10/4/07, bytte [EMAIL PROTECTED] wrote: It works ok in all tested browsers (ff mac/win, ie, opera mac/win), yet not on safari (mac+win

[jQuery] Re: safari (win, mac) issues with fadeIn + callback

2007-10-03 Thread bytte
Still looking for a Safari mastermind that can help me out on this one... ;) On 1 okt, 14:24, bytte [EMAIL PROTECTED] wrote: I have the latest jQuery version installed. And the problem occurs on the stable 2.0 version ofSafarion Mac. Too bad. Anyone else that has any idea? On 1 okt, 05:26

[jQuery] Re: live query

2007-10-03 Thread bytte
Why don't you use the ID of the a tag? The ID is a unique reference, so then you're sure you're targeting the correct a tag and none of the others. On 3 okt, 13:53, bluejam [EMAIL PROTECTED] wrote: Hi Im adding an element to Dom on fly, I then want to add an action to that element, i've

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread bytte
Really cool. Congrats. On 1 okt, 08:32, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Well I have been playing with jQuery for a few months, and wanted to test a few basic concepts. Mostly to do with injecting content into the DOM on the fly in a usable way, to give some older client sites of

[jQuery] Re: safari (win, mac) issues with fadeIn + callback

2007-10-01 Thread bytte
right in Safari 3. With version 1.2.xx it works fine. On Sep 30, 1:51 pm, bytte [EMAIL PROTECTED] wrote: I've been looking into this for the past 12 hours or so. I'm starting to get crazy. Any help would be deeply appreciated. It works in all browsers, yet not in Safari. (sorry

[jQuery] Re: Display problem with Jquery show hide - slide in out functions

2007-09-30 Thread bytte
I seen no flashing here. What browser are you on? On 29 sep, 16:28, wizofoz777 [EMAIL PROTECTED] wrote: My website is using slie in out hide functions, but I have no idea why, when I am hiding (slideout) my differents div, the content flashes the screen before it hides away... I have tried

[jQuery] Re: safari (win, mac) issues with fadeIn + callback

2007-09-30 Thread bytte
I've been looking into this for the past 12 hours or so. I'm starting to get crazy. Any help would be deeply appreciated. It works in all browsers, yet not in Safari. (sorry for bumping - but this list is my last hope at the moment) On 29 sep, 16:53, bytte [EMAIL PROTECTED] wrote: I have made

[jQuery] Re: wait until dynamically generated image has fully loaded

2007-09-29 Thread bytte
(fast,function() { $('.currentpic').attr({ src: ../layout/images/uploads/+json.picture}).fadeIn(fast)}); }; img.src = ../layout/images/uploads/; } Of course untested, but this should point you in the right direction. On 9/28/07, bytte [EMAIL PROTECTED] wrote: I've been searching

[jQuery] Re: wait until dynamically generated image has fully loaded

2007-09-29 Thread bytte
: ../layout/images/uploads/+json.picture}).fadeIn(fast)}); }; img.src = ../layout/images/uploads/; } Of course untested, but this should point you in the right direction. On 9/28/07, bytte [EMAIL PROTECTED] wrote: I've been searching through this list for a few hours already and trying

[jQuery] safari (win, mac) issues with fadeIn + callback

2007-09-29 Thread bytte
I have made a very basic slideshow, with help from this list, that looks for images in a database, then displays them. Here's the link: http://www.sum.be/project/item.php?item=14ID=39lang=1 (navigate through the pics by using the small arrows to the right of the picture) It works ok in all

[jQuery] Re: wait until dynamically generated image has fully loaded

2007-09-29 Thread bytte
, bytte [EMAIL PROTECTED] wrote: btw, it works fine (after adding the json.picture to the last link as well: img.src = ../layout/images/uploads/+json.image;) any idea why the animation results in no picture being show in Safari (both mac and windows)? it shows the loading gif

[jQuery] Code breaks on Safari Mac

2007-09-28 Thread bytte
hi list, I'm using the latest jquery build to do some fancy ajax+animation stuff on my website. Nothing spectacular. It works in all browser yet not in Safari on Mac. Any idea what I am doing wrong? Even the simple hide() function (second line of the script) doesn't work. Any idea on how to fix

[jQuery] wait until dynamically generated image has fully loaded

2007-09-28 Thread bytte
I've been searching through this list for a few hours already and trying and trying but I can't find the answer to my question. Let me describe what I'm trying to do. I display an image. When you click a text link, an ajax call gets fired. The ajax call queries a mysql database to find the link

[jQuery] simple math: add all values of (span class=number) and output result

2007-08-30 Thread bytte
I want to do some simple math. I want to collect all numbers that are in a span with the class number and add them to each other. Then output the result in another span (id=result). span class=number25/span span class=number25/span span class=number25.5/span So this should be the result: span

[jQuery] Re: radiobutton is checked?

2007-08-03 Thread bytte
Ok, sorry , should hae checked the documentation better. I found this to be the perfect answer to my question: $([EMAIL PROTECTED]@checked]) On 3 aug, 15:03, bytte [EMAIL PROTECTED] wrote: How can I check with jQuery whether or not a radiobutton is checked?

[jQuery] passing arguments to javascript function with php

2007-07-19 Thread bytte
I'm starting out with jQuery, and as I was trying to implement jQuery in a simple CMS I made to make the CMS more fancy, I ran into this problem. Say I'm having a news page on my website. The CMS displays all news items that are in the database. The CMS is built using PHP and MySql. So on that

[jQuery] Re: Flash-alike menu animation? Can this be done with jQuery?

2007-07-16 Thread bytte
Thanks a lot jazzie. That's more or less what I was looking for. On 15 jul, 23:55, jazzle [EMAIL PROTECTED] wrote: http://www.frequency-decoder.com/demo/animated-minitabs/ might get you started. On Jul 15, 7:09 pm, bytte [EMAIL PROTECTED] wrote: I have this menu which is just a few menu

[jQuery] Flash-alike menu animation? Can this be done with jQuery?

2007-07-15 Thread bytte
I have this menu which is just a few menu-items placed next to eachother like this: HOME - CONTACT - NEWS Beneath the menu I have a little image, kind of like an arrow. I want the arrow to slide from left to right from menu-item to menu- item, depending on the item i'm hovering over. So let's