[jQuery] editease - my first plugin endeavor

2007-09-30 Thread [EMAIL PROTECTED]
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 mine, CMS capabilities without having to do a full conversion of the site to a database d

[jQuery] Re: ANNOUNCE: jqUploader update

2007-09-30 Thread Alexandre Plennevaux
http://www.pixeline.be/experiments/jqUploader/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: lundi 1 octobre 2007 3:22 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: jqUploader update Alexandre, Could you

[jQuery] Re: uhhh.......WAT?

2007-09-30 Thread Michael Geary
> From: cmbtrx > > Thanks for testing this out...seems then that something is > interfering with jQuery functionality. So, um, that does not > bode well for my using jQuery...is it prone to not playing > nice with others? Just wondering out loud... At the risk of sounding like a Digger... Lin

[jQuery] Re: using of several $(document).ready()

2007-09-30 Thread Joel Birch
On 10/1/07, james_027 <[EMAIL PROTECTED]> wrote: > Will there be any bad if in a page I have more than one $ > (document).ready()? > james Nope, no bad. Go for it! :)

[jQuery] Re: Dropdown div

2007-09-30 Thread Joel Birch
On 9/30/07, me1000 <[EMAIL PROTECTED]> wrote: > So I thought it was all working great, until I discovered than > whenever you click ANYWHERE on the page it drops down! > :confused: >From your code I don't see why the div would drop down when clicking anywhere on the page. The only thing I can thi

[jQuery] Re: Manipulating DOM

2007-09-30 Thread Joel Birch
I replied to your initial duplicate post but maybe you are tracking this one instead? Here is my post again: Welcome to the list Maurice, I tested this and it works: $(function(){ var $holder = $('#sometextholder'); $('li').each(function(){ var $$ = $(this);

[jQuery] Safari 3 beta possible bug in html()

2007-09-30 Thread Mathew Byrne
We're coming across some strange behaviors in Safari whilst developing a site for a client. Currently this behavior is not reproducible in Firefox and I assume other browsers. I haven't had time to put together a test page, however a brief synopsis follows: 1. Some content is loaded through the

[jQuery] Re: jQuery (Superfish) conflicting with swfobject

2007-09-30 Thread Joel Birch
On 10/1/07, Joel Birch <[EMAIL PROTECTED]> wrote: > $(".nav").superfish({ > animation : { opacity:"show",height:"show"}, > delay : 250 > }); In your case I advise adding more specificity to the selector you use to initialise Superfish. ".nav" is a fairly

[jQuery] Re: How to add/remove dynamic blocks of html

2007-09-30 Thread Michael Geary
Glad you like the [].join('') trick, Howard - and good catch on the unnecessary wrapper. You didn't miss anything, and that simplifies the example down to: $('#exampleCA').append( [ '', '', '', 'I was created by jQuery append', '',

[jQuery] Re: jQuery (Superfish) conflicting with swfobject

2007-09-30 Thread Joel Birch
Hi Brett, This sounds like one of IE's many CSS bugs, but it's easy to fix. Simply add z-index:999; to the .nav element in the Superfish CSS file. Obviously you have the z-index on .nav li which is correct, but you will also need to to add it to .nav to make IE work properly. I have tested this s

[jQuery] jQuery (Superfish) conflicting with swfobject

2007-09-30 Thread Brett
Hi all, I've been playing around with a dropdown style with help from the fantastic Superfish addin. It looks great in firefox so far, and to a limited extent internet explorer http://cressaid.brettjamesonline.com/staley/bigtest.html This is the page with swfobject disabled (put a typo in to

[jQuery] I.E. Troubles, halp \o/

2007-09-30 Thread [EMAIL PROTECTED]
Kay so I'm working on this project and I want it to look good in both Browsers, you know, Designer's Nightmare. So, Firefox looks great and js/jquery is working as intended, and then me and my partner go to IE7 and cry. The simple code that I'm working with just just .slideToggle(); And it's qui

[jQuery] Re: Jquery Location.href or load --problem

2007-09-30 Thread Flesler
I'm glad you fixed it... just in case... window.location.href("/de/ testsite/preview_profile"); is not valid, location.href is a string, not a function.. you could do window.location.href = "/de/testsite/ preview_profile"; or just location = ""; Cheers. On Sep 30, 4:25 pm, voltron <[EMAIL P

[jQuery] I.E Troubles.

2007-09-30 Thread [EMAIL PROTECTED]
Kay so I'm working on this project and I want it to look good in both Browsers, you know, Designer's Nightmare. So, Firefox looks great and js/jquery is working as intended, and then me and my partner go to IE7 and cry. The simple code that I'm working with just just .slideToggle(); And it's qui

[jQuery] Drop Down Div

2007-09-30 Thread me1000
I have a div called testidrop, [code]...[/code] normally is is hidden, but when I click on a link (testialink) it should drop down, [CODE]Testimonials[/ CODE] So I thought it was all working great, until I discovered than whenever you click ANYWHERE on the page it drops down! :confused: Here i

[jQuery] javascript paint like drawing tool

2007-09-30 Thread [EMAIL PROTECTED]
Hi, I'm not able to find a good (preferably open source) paint-like drawing tool & thought maybe there is one built on jquery. Simple as the original MS paint. Does anyone have an clue? Thanks.

[jQuery] Home Page ui.jquery.com

2007-09-30 Thread phobis
The image that loads on the main page is HUGE! I don't want JQuery to look bad by having an unoptimized image in he home page, so I have optimized it. I have no way of uploading it though. If someone would like me to get it to them, please contact me.

[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: How to add/remove dynamic blocks of html

2007-09-30 Thread howardk
Nice use of join()! I'm new to JavaScript and jQuery both, and it's nice to come across little snippets like this I can readily add to my jQuery repetoire and that slightly expand my understanding of JavaScript. By the way, the docs show that it's legal to pass, as an argument to append(), either

[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

[jQuery] Re: Can't parse input from one form of many on page

2007-09-30 Thread Flesler
the "hidden" part won't match a thing, you should use ":hidden" instead, and anyway, the "input" part will match hiddens as well. On Sep 27, 6:28 pm, mo2g <[EMAIL PROTECTED]> wrote: > I set up a quick function to parse the Parms array I get from this and > it doesn't appear to work. > > Basically

[jQuery] Re: Borders for rounded corners?

2007-09-30 Thread sgrover
NM - found the adornments at http://www.malsup.com/jquery/corner/ Shawn sgrover wrote: > I'm using the rounded corners plugin (great tool!). I'd like to apply a > border around my DIV after the corners have been applied. Setting the > border for the div via CSS works fine if I don't apply th

[jQuery] Re: inconsistent processing for xml vs html

2007-09-30 Thread [EMAIL PROTECTED]
http://dev.jquery.com/ticket/1753 On Sep 29, 7:47 am, "John Resig" <[EMAIL PROTECTED]> wrote: > Could you submit a ticket for this? Thanks! > > http://dev.jquery.com/ > > --John > > On 9/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > In jQuery 1.2.1, line 783 does this: > > >

[jQuery] Dropdown div

2007-09-30 Thread me1000
I have a div called testidrop, [code]...[/code] normally is is hidden, but when I click on a link (testialink) it should drop down, [CODE]Testimonials[/ CODE] So I thought it was all working great, until I discovered than whenever you click ANYWHERE on the page it drops down! :confused: Here

[jQuery] Borders for rounded corners?

2007-09-30 Thread sgrover
I'm using the rounded corners plugin (great tool!). I'd like to apply a border around my DIV after the corners have been applied. Setting the border for the div via CSS works fine if I don't apply the corners. But once the corners are applied, my border disappears. I've read the docs for ro

[jQuery] insertBefore not inserting into dom?

2007-09-30 Thread scottnath
Hi, I'm trying to insert a new list item, but when I do it seems that jquery does not recognize that the new item is in there and jquery functions don't work on it. An example is below: $(document).ready( function () { $("#windowOpen").click(function(){

[jQuery] Suggestion for increase the performance of the jQuery

2007-09-30 Thread Igor Cemim
Hello! Like to give a suggestion. Use the site www.banascript.com for compact the jQquery. I compacted the file of the jQuery 1.2.1 (81,5KB) and I obtained a file of 21,1kb. The version compacted of the jquery lowered of the site jquery.with had 45kb. Embraces of Igor Cemim

[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(

[jQuery] subscribe jQuery mailing list

2007-09-30 Thread Ross Wan
I want to subscribe jQuery's mailing list. THX. -- Web site:http://wstudio.web.fc2.com/index.html";>KISS the World! Blog:http://mrwlwan.wordpress.com>Ross Wan's world!

[jQuery] Re: Jquery Location.href or load --problem

2007-09-30 Thread Kris Kowal
You might consider:: window.location.href = fullyQualifiedUrl; ``href`` is not a function, although the notion (arguably a jQuery idiom) that assignment could be implied by application on a non-function is fun. Kris Kowal On 9/29/07, voltron <[EMAIL PROTECTED]> wrote: > > > Hi all, I would

[jQuery] Re: Problems with $.post and $.ajax

2007-09-30 Thread Oscar from Sweden
I love u guys. It worked! What possibilities I got, mohaha ;)

[jQuery] Re: uhhh.......WAT?

2007-09-30 Thread cmbtrx
@jeffkretz Not at all! I made a point of congratulating the group on their amazing patience (my initial post was...frazzled). So forgive me if I have a knee-jerk reaction to sophomoric insults...one bad apple is all it takes, so I'm quick to jump on it. On Sep 28, 3:03 pm, jeffkretz <[EMAIL PRO

[jQuery] Re: uhhh.......WAT?

2007-09-30 Thread cmbtrx
See previous reply; I am not Spock (and yes, I should have included sample code--doh. sorry) Thanks for testing this out...seems then that something is interfering with jQuery functionality. So, um, that does not bode well for my using jQuery...is it prone to not playing nice with others? Just wo

[jQuery] Re: uhhh.......WAT?

2007-09-30 Thread cmbtrx
Yep, that is absolutely on target. I believe that right now I'm somewhere between #3 and #4. So sue me!! On Sep 28, 5:18 pm, Michael McDaniel <[EMAIL PROTECTED]> wrote: > I couldn't help myself when I read this message... > I just about busted out laughing. > > I had a similar feeling and even p

[jQuery] Re: uhhh.......WAT?

2007-09-30 Thread cmbtrx
Point taken, but I knew that my original message was going to be terse, and I warned would-be readers of it! Mea culpa. But frustration in tackling a totally new lib like this one--and evidently getting *absolutely nowhere*--was more difficulty than I usually encounter (considering I still haven'

[jQuery] Re: Problems with $.post and $.ajax

2007-09-30 Thread Oscar from Sweden
Thank you for your answer and your time. I thought that the callback was only a "the post was successfull" and not any important things to do. I shall try your code right now ! thx.

[jQuery] Re: ANNOUNCE: jqUploader update

2007-09-30 Thread Rey Bango
Alexandre, Could you post a link to it? Rey.. Alexandre Plennevaux wrote: hi friends, this is just to inform everyone that an update has been made to jqUploader: V 1.0.2.2: fixes flash prompt "A script in this movie is causing Adobe Flash Player 9 to run slowly...". Moved to jquery 1.2

[jQuery] using of several $(document).ready()

2007-09-30 Thread james_027
hi, Will there be any bad if in a page I have more than one $ (document).ready()? The reason for this is because I have put make a *.js which contains the common things that should be done, then on some specific pages I have $(document).ready() again for special cases... Thanks james

[jQuery] Interface Color picker issue

2007-09-30 Thread Skilip
Hi everybody, At the moment I'm writing a color- picker plugin for jQuery. For that I've used the color-picker written by the really smart developers from interface.eyecon.ro. But I am trying to make it backwards compatible, so when you change the values of the hex, or RGB input fields, the color

[jQuery] ANNOUNCE: jqUploader update

2007-09-30 Thread Alexandre Plennevaux
hi friends, this is just to inform everyone that an update has been made to jqUploader: V 1.0.2.2: fixes flash prompt "A script in this movie is causing Adobe Flash Player 9 to run slowly...". Moved to jquery 1.2.1 Hope this is useful! Alexandre Plennevaux Ce message Envoi est

[jQuery] Re: Jquery plugin embedding advice

2007-09-30 Thread wattaka
I have a total of 59 KB(plugins 17KB , Jquery 28KB, my js 14KB), I´ll look into GZIP compression, thanks! On Sep 30, 9:49 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > How big is it? If it's less than 20k, then I would suggest using Gzip and > sending it as one file to be cached for all pages. >

[jQuery] Re: Problems with $.post and $.ajax

2007-09-30 Thread Jean
or can use $_REQUEST ;D On 9/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > I'm trying to learn jQuery so I can use ajax much easier than writing > > ordinary javascripts. But it isn't working for me. Tried soo many > > different (and Very easy) things and they won't work. Can someone

[jQuery] Re: Selection an option

2007-09-30 Thread wattaka
Glen saves the day again, thanks! On Sep 30, 9:47 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > You need to find the option, not the select. > var monthVar = from the server or wherever; > $("#intended_start_month option[value=" + monthVar + "]").attr("selected", > "selected"); > > Glen > > On 9/

[jQuery] Re: Jquery plugin embedding advice

2007-09-30 Thread Glen Lipka
How big is it? If it's less than 20k, then I would suggest using Gzip and sending it as one file to be cached for all pages. Glen On 9/30/07, wattaka <[EMAIL PROTECTED]> wrote: > > > At the moment, I have one JS file with plugin configurations, user > functions, variables an so on for the whole

[jQuery] Re: Selection an option

2007-09-30 Thread Glen Lipka
You need to find the option, not the select. var monthVar = from the server or wherever; $("#intended_start_month option[value=" + monthVar + "]").attr("selected", "selected"); Glen On 9/30/07, voltron <[EMAIL PROTECTED]> wrote: > > > Hi all, how would select an option and set its attribute to

[jQuery] Jquery plugin embedding advice

2007-09-30 Thread wattaka
At the moment, I have one JS file with plugin configurations, user functions, variables an so on for the whole site even though they all wont be need on every page, would this slows down things? How do others handle this? Thanks

[jQuery] Selecting an option and changing its attribute to selected

2007-09-30 Thread voltron
On Sep 30, 9:23 pm, voltron <[EMAIL PROTECTED]> wrote: > Hi all, how would select an option and set its attribute to selected? > I have this part already : > > $("#intended_start_month").attr("selected", "selected"); > > This is the HTML, I want so make a particular month selected when the > p

[jQuery] Re: Jquery Location.href or load --problem

2007-09-30 Thread voltron
Hi Wizzud, sorry for not providing enough information. I solved the problem. I had named the links otherwise in my template. Thanks! On Sep 30, 1:12 am, Wizzud <[EMAIL PROTECTED]> wrote: > Without a bit more information it is nigh on impossible to determine what > might - or might not - be happe

[jQuery] Selection an option

2007-09-30 Thread voltron
Hi all, how would select an option and set its attribute to selected? I have this part already : $("#intended_start_month").attr("selected", "selected"); This is the HTML, I want so make a particular month selected when the page loads Januar

[jQuery] plugin found: gridlayouts

2007-09-30 Thread rolfsf
I just came across a jquery plugin called gridlayouts that I can't find listed or mentioned anywhere. If you're developing a page based on a grid layout (not to be confused with table layout) you can toggle the grid "guides" on and off to see how things are holding together. http://gridlayouts.

[jQuery] LIST elemet dblclick() EVENT in OPERA

2007-09-30 Thread tundrax
$("my_select").dblclick() and $("my_select > option").dblclick() doesn't work in OPERA. Using latest jquery, Opera 9.02

[jQuery] Re: Ignoring field within whole DIV

2007-09-30 Thread Digital Spaghetti
Sorry, I posted the wrong bit of code. My .ajaxLoad code is: $pastemonkey('#content').not($pastemonkey('#PasteTags') [0]).ajaxStart(function(){ $pastemonkey.blockUI(); }); On Sep 30, 4:57 pm, "Tane Piper" <[EMAIL PROTECTED]> wrote: > Hi there, > > I am running into a lit

[jQuery] Ignoring field within whole DIV

2007-09-30 Thread Tane Piper
Hi there, I am running into a little problem, I cannot seem to get my code to work to ignore 1 field inside a DIV. I have a .ajaxLoad() on the div, that fires block UI when the content of the DIV changes, however also inside the DIV I have a field that has a autocomplete attached to it. When I t

[jQuery] Re: document.ready in an ajax response

2007-09-30 Thread Arrix
document.ready won't trigger anymore after the page has been loaded. See http://dev.jquery.com/ticket/904 So avoid $(document).ready() in ajax response snippet. new function() { alert('Hi') } You are actually creating a new instance using an anonymous constructor. The constructor is invoked

[jQuery] Re: jquery 1.2 unbind problem

2007-09-30 Thread Arrix
There is a conversation in the dev list about this problem. I've created a ticket according to the discussion. http://dev.jquery.com/ticket/1731 Related tickets are #1697 , #1618and #1610 . On