[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread R. Rajesh Jeba Anbiah
On Jun 4, 10:28 pm, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > More importantly, why are you using two ID's? > Remember, ID's are supposed to be unique, so just $('#bar') should work. > If your ID's aren't unique, I highly suggest you change them to classes. I have a setup where every page

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread John Farrar
In IE7 it had broken graphic links. Karl Swedberg wrote: > If you just want it to appear when you click a link, then you probably > don't want to append it to the body on document.ready. Put that in a > click handler instead. Anyway, I threw together a page for you: > > http://test.learningjquer

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Karl Swedberg
If you just want it to appear when you click a link, then you probably don't want to append it to the body on document.ready. Put that in a click handler instead. Anyway, I threw together a page for you: http://test.learningjquery.com/create-window.html Is that the kind of thing you're loo

[jQuery] Re: Animations breaking in Safari 2.0.4 - elements randomly disappear

2007-06-04 Thread Erik Beeson
This looks like pretty straight forward navigation menus. You might want to consider looking into already existing menu implementations instead of rolling your own. I'm not sure why the links are disappearing, but I have some other suggestions, any of which might help clean up strange behavior.

[jQuery] Re: animating with unit '%'

2007-06-04 Thread Erik Beeson
I think your syntax for animate is a little off. It should be like: $('#wrap').animate({width: 770}, 'slow'); To get the effect you're looking for, do the animation in pixels, then change it to percent when it finishes: $('#wrap').animate({width: $(document).width()}, 'slow', function() { $(t

[jQuery] Re: Loading additional photos after page load

2007-06-04 Thread Jared Hawkins
Then, how would I suppress those images to be loaded after this event from loading on page load? On Jun 4, 10:30 pm, Jared Hawkins <[EMAIL PROTECTED]> wrote: > Like this? > > $(document).ready(function() > > { > for(var i = 0; i { > jQuery("").attr("src", arguments[i]); > } > > } > > $.

[jQuery] Re: animating with unit '%'

2007-06-04 Thread Karl Swedberg
You might want to look into the Interface suite's extensions to the .animate() method: Interface overwrites the default 'animate' function with an extended one. The new 'animate' function brings several enhancements: * Animates a collection of properties using one timer instead of usi

[jQuery] Re: Loading additional photos after page load

2007-06-04 Thread Jared Hawkins
Like this? $(document).ready(function() { for(var i = 0; i").attr("src", arguments[i]); } } $.preloadImages( "image1.jpg", "image2.jpg", "image3.jpg", "image4.jpg", "image5.jpg", ); On Jun 4, 8:09 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Just add the next set of image elements to the

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Karl Swedberg
The fade animations have been fixed in 1.1.3a, even for table rows. Other animation methods still have issues, though. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 4, 2007, at 5:54 PM, Erik Beeson wrote: Except he is removing the row from the

[jQuery] Why does my ajax function kill drag/drop?

2007-06-04 Thread dennis
I have Interface 1.2 Drag/Drop working. I can drag images (hardcoded) from div id=theSearchResultImages to my dropable area just fine. But when I try to add my ajax 'Search Photos By Tags' form which populates images into div id=theSearchResultImages, I can no longer drag and drop the images. Her

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread juliandormon
OK More info: This is generating a server side error. It seems that if I do not upload a file, the JQuery Form method, posts the form normally encoded instead as multipart/form-data. Can this be avoided? Here is the error my server is throwing: COM Error Number: -2146828227 (0x800A003D) File Nam

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread Mike Alsup
Do you have a sample page? It doesn't sound like you're missing anything. You don't even need the enctype, the form plugin will take care of that for you. What exactly do you mean by "won't submit?" Is there an error? Mike On 6/4/07, juliandormon <[EMAIL PROTECTED]> wrote: Hi All, I have

[jQuery] Re: jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread juliandormon
I should specify. I think the form is submitted, but returns nothing - no success anyway? I usually can test this using a the GET method to see if the server is producing an error, but alas not with this multipart method. On Jun 4, 9:20 pm, juliandormon <[EMAIL PROTECTED]> wrote: > Hi All, > I

[jQuery] jquery Form enctype="multipart/form-data" problem

2007-06-04 Thread juliandormon
Hi All, I have added enctype="multipart/form-data" and a file field to a form. The form successful submits via jQuery Form's ajax method and the file ends up on the server. The problem is, the form won't submit if no file has been added. What am I missing?

[jQuery] Re: dynamic jdMenu help

2007-06-04 Thread Benjamin Sterling
We've all been there; post up that code tomorrow and I will see what help I can give. On 6/4/07, Chris Jordan <[EMAIL PROTECTED]> wrote: Ben, Thanks for responding. I am frustrated, and I have a headache. Thanks for bearing with me. I just got back from dinner, and I'm going to hit the sack

[jQuery] Re: dynamic jdMenu help

2007-06-04 Thread Chris Jordan
Ben, Thanks for responding. I am frustrated, and I have a headache. Thanks for bearing with me. I just got back from dinner, and I'm going to hit the sack to try and let go some of this frustration, but tomorrow I'll put some code together to show online. I'm having a couple of problems now. F

[jQuery] Animations breaking in Safari 2.0.4 - elements randomly disappear

2007-06-04 Thread Tatham Oddie
Hi guys, I've built out this page here: http://testdrive.squeezecreative.com.au/eastgate/ It's working perfectly in IE6, IE7 and FF2/PC however broken badly in Safari 2.0.4 and slightly broken in FF2/Mac. My main priority is Safari right now. As you move the mouse over the sub menu, triggering

[jQuery] animating with unit '%'

2007-06-04 Thread JMParsons
I've been trying to create animations with width values in percent. For instance, I have a div wrapper around my page called wrap, and I'm trying to be able to toggle it's width with .animate() from 770px wide to 100% wide. For the most part I'd like to keep it as an animation, so it fluidly expa

[jQuery] Re: dynamic jdMenu help

2007-06-04 Thread Benjamin Sterling
Chris, -- I could have just as easily said... -- Sensing a little frustration; I was only trying to get a bigger picture. Those were some of the questions I have to ask myself everyday. I actually have about 40 post-its around my monitor with those types of questions to help me problem solve th

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
thanks Mike... I wrote all the techniques before jQuery... but jQuery really pulled it together. If anyone requires tweeks or new features, let me know. I also used it in a little demo I did... http://jpassoc.com/junior/story/again... no files are known and no keywords are known... it just searc

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread Glen Lipka
Last weekend I had the same questions. (http://www.sparkt.com/index.htm) I ended up using a stretching methodology: width: 100% on the fade across the top. And height: 100% for the shadowed borders of the content. Surprisingly, (or not) I found that most of my needs to repeat background PNGs can

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Mike Alsup
Jake, this plugin is really cool! Thanks. Mike http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/

[jQuery] Re: Changing class on a preceding element by click link in another div

2007-06-04 Thread Jared Hawkins
Karl, I removed the space you spotted and it works! You are awesome! As for the other methods, thanks for sharing. I'll be studying them to understand their approaches. Thanks On Jun 3, 11:23 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Ah ha! I think I see the problem, Jared: > > > > Notic

[jQuery] Re: Loading additional photos after page load

2007-06-04 Thread Mike Alsup
Just add the next set of image elements to the DOM in the window.onload event. Mike Is there a method whereby I can load only the first group of photos that display first on page load, and then somehow after page load, issue a call for the remaining photos?

[jQuery] Loading additional photos after page load

2007-06-04 Thread Jared Hawkins
I'm using the Innerfade plugin to display a group of testimonial photos and then having them rotate. The problem is that by doing this I get a horrible page load time, as all the photos being used in the Innerfade are being loaded. Is there a method whereby I can load only the first group of phot

[jQuery] Re: PNG hack that works for repeated background images?

2007-06-04 Thread pd
Klaus is a legend. The solution to scale the background works very well for me. Perhaps the author of the jQuery PNG hack plugin (khurshid?) here: http://khurshid.com/jquery/iepnghack/ could code a flag option to cater for this? I simply edited the following in the 'hack' and it worked: Before

[jQuery] Re: dynamic jdMenu help

2007-06-04 Thread Chris Jordan
Ben, I don't have an online demo that anyone can view. I could have been a little clearer. "MenuLists" was just a non-sense name I came up with for the post that was supposed to represent what was sent back from the server which is "the rest of the list elements". It's being returned as a string

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Karl Swedberg
On Jun 4, 2007, at 5:38 PM, Klaus Hartl wrote: Makes perfect sense. phew! I was hoping you would say that. :-) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: dynamic jdMenu help

2007-06-04 Thread Benjamin Sterling
Chris, a url would go a long way to helping you. what is MenuLists? what is being passed back from the server? are you sure it is passing back what you want? How are you building your menu? Ben On 6/4/07, Chris Jordan <[EMAIL PROTECTED]> wrote: Hi folks, I'm in need of some help using jdMe

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Erik Beeson
What about it isn't working? This simple example works fine for me: $(document).ready(function() { $('body').append('This is the test.'); $('#test').bind('click', function() { alert('This is from a test event'); }); }); --Erik On 6/4/07, radzio <[EMAIL PROTECTED]> wrote: Unfortunately it d

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Erik Beeson
Alternatively, you could apply the fade out to an inner div, and then remove the row, like so: http://erikandcolleen.com/erik/projects/jquery/trdelete/content_table4.html But be careful. When applying animation to multiple elements, the callback will get called once for each element. Maybe in t

[jQuery] Traversing up the DOM to make a decision (using NOT or otherwise?)

2007-06-04 Thread Miro
Hello all, I am relatively new to jQuery having used prototype since it's inception. I am attempting to affect all anchor tags on a page except for those contained in a certain IDed element. Basically, we have some wizard forms that will contain A tags used in the form interaction that we do NOT

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Lee Hinde
On 6/4/07, Lee Hinde <[EMAIL PROTECTED]> wrote: On 6/4/07, infosoft <[EMAIL PROTECTED]> wrote: > > Hi > > I have a table where I browse the records of the database. I > implemented a delete button in each row. When I press this button, I > send an ajax request to the server. If the response is o

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Erik Beeson
Except he is removing the row from the DOM. Here's an example of the problem: http://erikandcolleen.com/erik/projects/jquery/trdelete/content_table.html Something about the fade out is breaking it. Check out the same thing without the fade: http://erikandcolleen.com/erik/projects/jquery/trdele

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Mike Alsup
Hi Aaron, Actually you don't need to go that low-level. Take a peak at the "generate" method here: http://malsup.com/jquery/media/jquery.media.js Mike On 6/4/07, Aaron Scott <[EMAIL PROTECTED]> wrote: > That problem that is fixed by using straight DOM code for creating the > object and pa

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Lee Hinde
On 6/4/07, infosoft <[EMAIL PROTECTED]> wrote: Hi I have a table where I browse the records of the database. I implemented a delete button in each row. When I press this button, I send an ajax request to the server. If the response is ok, I need to delete the row of the table that have the dat

[jQuery] dynamic jdMenu help

2007-06-04 Thread Chris Jordan
Hi folks, I'm in need of some help using jdMenu. I've got a nice menu up and running using ver. 1.2.1, but it's static: meaning that I've hard coded the un-ordered lists that make up the menu contents. What I need now is a way for my app to build the menu on the fly depending on what screen the u

[jQuery] Re: ImageBox question: max width / height for images?

2007-06-04 Thread Benjamin Sterling
Yoav, take a look at thickbox and check out the code he uses to achieve that. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Klaus Hartl
Karl Swedberg wrote: here we go again... :-) I replied to a similar question regarding specifying an ID inside of a class a few days ago. same thing applies to ID inside an ID... This paragraph from the reference section of the upcoming Learning jQuery book might help explain why someone w

[jQuery] ImageBox question: max width / height for images?

2007-06-04 Thread Yoav Shapira
Hi, I'm using (and loving) the Interface (v1.2) ImageBox component, on jQuery 1.1.2. It works as advertised -- thank you to the authors! My question is this: I have some large images to display, so I would like to specify a max width / height to the overlay container (or whatever the appropriate

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Alex Ezell
Pablo, I'm sort of guessing here, but it might be that fadeOut doesn't remove the element from the DOM. Perhaps try another effect like DropOutUp like: jqRow.DropOutUp(500); /alex On 6/4/07, infosoft <[EMAIL PROTECTED]> wrote: Hi I have a table where I browse the records of the database. I

[jQuery] Delete a table row with JQuery

2007-06-04 Thread infosoft
Hi I have a table where I browse the records of the database. I implemented a delete button in each row. When I press this button, I send an ajax request to the server. If the response is ok, I need to delete the row of the table that have the data I was deleted. By example: HTML Code:

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Aaron Scott
> That problem that is fixed by using straight DOM code for creating the > object and param elements. > Well, this is the first time I've tried making elements using straight DOM code in JS. This is what I coded: var body = document.getElementsByTagName("body")[0]; var movieBuil

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread radzio
Unfortunately it doesn't work too. However it's a bit better but still I have this problem :/ I simply want to generate js window by clicking link something like this -> http://prototype-window.xilinus.com/ but a bit more simply ;-). But I couldn't jump over problem I described earlier ;/. I

[jQuery] Re: Jquery wizard plugin?

2007-06-04 Thread Anthony Leboeuf(Worcester Wide Web)
Made a wizard, not really a plugin but more of a hack if anyone wants it feel free to take the code. Step css and graphics thanks to Cody Lindley http://codylindley.com/CSS/325/css-step-menu If you want the code you can get it here http://worcesterwideweb.com/jquery/wizard/ -Tony sublimena

[jQuery] Re: Eliminating a plugin instance

2007-06-04 Thread Jörn Zaefferer
Jose wrote: A typical plugin pattern is [...] If I follow this exactly I end up with two instance of plugin, conflicting with each other so I need to eliminate the first one before setting up the plugin again. Any ideas ? It depends on what the plugin actually does. Most apply some event ha

[jQuery] Re: update input name

2007-06-04 Thread Jörn Zaefferer
oscar esp wrote: I have a code to clone a input. After that I need to change the id and name it... seems that change id works fine but not the name: jQuery("#"+inputID,addedItem).attr("id",newInputID); -> works ok jQuery("#"+inputID,addedItem).attr("name",newInputID); -> seems doesn't work

[jQuery] Re: JSON / PHP's json_encode()

2007-06-04 Thread Michael Geary
Your json.js file is not valid JSON. It is executable JavaScript code, but any actual JSON parser will reject it. JSON is a limited subset of JavaScript and cannot contain function definitions: http://json.org/ -Mike > From: [EMAIL PROTECTED] > > Has nothing to do with jQuery directly, but th

[jQuery] Re: Setting class="error" with validate plugin.

2007-06-04 Thread Jörn Zaefferer
Mika Tuupola wrote: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Lets assume I have following HTML Some date: id="date" /> Now what I want to happen is that when form fails validation (date is empty), label for date gets class "error" added. In m

[jQuery] TableSorter - Integer with Negative Values

2007-06-04 Thread westamastaflash
I managed to get a strange bug with negative values causing the tablesorter to sort by alpha instead of by number order. Here's a sample HTML File Showing the sort by Alpha: TableSorter Error $(document).ready(function() { $("#resultstable").tableSorter({

[jQuery] Re: malsup form plugin with bassistance validation plugin help

2007-06-04 Thread Jörn Zaefferer
Matt2012 wrote: Im struggling to integrate the form plugin with the validation plugin [...] but since uploading the latest version of the validation plugin this does not work. Your code looks alright. Could you detail what exactly wents wrong? Maybe a testpage? It may be a regression in th

[jQuery] Re: Jquery wizard plugin?

2007-06-04 Thread Su
Link? On 6/4/07, sublimenal <[EMAIL PROTECTED]> wrote: Hey just wondering if theres a plugin similar to dojo's wizard plugin?

[jQuery] JSON / PHP's json_encode()

2007-06-04 Thread [EMAIL PROTECTED]
Has nothing to do with jQuery directly, but there's alot of really great developers here, so maybe I'm missing something that someone else will catch... -- [json.js] { "itemtitle1": function(){

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane Enos
The blur actually does work. All I needed the blur to do was not show that box around the clicked link. I have now completely reconfigured this script. I think I was making it too difficult. This now works in IE: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(func

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Mike Alsup
I assume that .html() and .append() are DOM functions, while .load() uses innerHTML? Sort of, but the dom manipulation methods all call "clean" which uses innerHTML so you're not really escaping that limitation. ... but if you check the results: http://www.andcuriouser.com/sandbox/jqueryqt

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Aaron Scott
> I've found that it is somewhat unreliable to add object elements using > innerHTML. For my media plugin I resorted to using DOM methods to add > media in IE. For an example, look at the "generate" method at the > bottom of this file: http://malsup.com/jquery/media/jquery.media.js Thanks for

[jQuery] Re: script killing IE

2007-06-04 Thread Benjamin Sterling
Shelane, First, you should be able to chain a few of your functions, ie: $(this).unbind().click(function()... Secondly, I may be misunderstanding the purpose of the .blur function but I don't think it will work the exact way you are using it: "Note: This does not execute the blur method of the u

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Bil Corry
Mike Alsup wrote on 6/4/2007 8:15 AM: 2. Add support in the ASP page to convert UTF-8 into 8859. I don't know if this will help, but here's all the Windows-1252 chars and their UTF-8 equivalents: - Bil

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
Junior is 10 months old. the pages are some 3-4 months old. I've re-used the code many times!!! I hope it works well for everyone! On 6/4/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Nice! Is this still in development or ready to go? Glen On 6/4/07, Michael Stuhr <[EMAIL PROTECTED] > wrote: > >

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Glen Lipka
Nice! Is this still in development or ready to go? Glen On 6/4/07, Michael Stuhr <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ schrieb: > My dog does that! > > Actually we do it for him... he just sits for pictures... I wrote a plugin > http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ >

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Michael Stuhr
Ⓙⓐⓚⓔ schrieb: My dog does that! Actually we do it for him... he just sits for pictures... I wrote a plugin http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ that I use all over his site http://jpassoc.com/junior om

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
My dog does that! Actually we do it for him... he just sits for pictures... I wrote a plugin http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ that I use all over his site http://jpassoc.com/junior On 6/4/07, Arne-Kolja Bachstein <[EMAIL PROTECTED]> wrote: Hi there, this is

[jQuery] Re: jqBrowser and, why no email?

2007-06-04 Thread Benjamin Sterling
Josh, -- First off I stopped receiving emails ... -- Your email address is bouncing back, make sure you can accept the jquery-en@googlegroups.com email address. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Michael Edmondson
@Renato Formato: Very nice. Perhaps DOM tree walking would be better than my blanket regex over HTML... Thanks.

[jQuery] html() doesn't render html with select in it

2007-06-04 Thread [EMAIL PROTECTED]
Hello everyone, This code I wrote in October of 2006 using 1.0.x and it worked fine when I wrote it. $("#major_cats").change(function(){ $("#subcats").html(); $.post('sublist.mas' ,{ super_id: $("#major_cats").val(), market: 1, year: 2007 }, function(data) { $("#s

[jQuery] Re: jqBrowser and, why no email?

2007-06-04 Thread Erik Beeson
I'm not sure about list emails. It's working for me... Have you tried this plugin: http://www.alterform.com/resources/jqbrowser-2 --Erik On 6/4/07, JoshN <[EMAIL PROTECTED]> wrote: Hey all, First off I stopped receiving emails from the list a while back. I have unsubscribed/re-subscribed b

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Mike Alsup
Aaron, I've found that it is somewhat unreliable to add object elements using innerHTML. For my media plugin I resorted to using DOM methods to add media in IE. For an example, look at the "generate" method at the bottom of this file: http://malsup.com/jquery/media/jquery.media.js Mike On

[jQuery] Jquery wizard plugin?

2007-06-04 Thread sublimenal
Hey just wondering if theres a plugin similar to dojo's wizard plugin?

[jQuery] QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Aaron Scott
http://www.andcuriouser.com/sandbox/jqueryqt/test.html Contents of test.html: function swapMovie() { $("#TB_movie").remove(); $("body").append("
"); $("#TB_movie").load("test-movie.html"); } // swapMovie() Swap the movie Contents of test-mo

[jQuery] jqBrowser and, why no email?

2007-06-04 Thread JoshN
Hey all, First off I stopped receiving emails from the list a while back. I have unsubscribed/re-subscribed but still nothing. My settings say I'm supposed to receive emails on each post. Is there something else I can do to get the emails going again? Secondly, I tried out the jqBrowser plugi

[jQuery] Slideshow with unknown amount of images

2007-06-04 Thread Arne-Kolja Bachstein
Hi there, this is more a general question than a jQuery based one, but maybe jQuery really is the thing to implement this. I have to create a slideshow with an unknown amount of images. The person that is managing the content doesn't want to edit any source code or something when uploading

[jQuery] Re: AjaxExperience 2007 Presentation

2007-06-04 Thread Glen Lipka
Ahh, they are cool with it. Use this code when you sign up to donate $50 to jQuery. RAF318 Glen On 6/4/07, Glen Lipka <[EMAIL PROTECTED]> wrote: http://ajaxexperience.techtarget.com/west/html/speakers.html#GLipka http://ajaxexperience.techtarget.com/west/html/sessions.html#GLipkajQuer

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Karl Swedberg
here we go again... :-) I replied to a similar question regarding specifying an ID inside of a class a few days ago. same thing applies to ID inside an ID... This paragraph from the reference section of the upcoming Learning jQuery book might help explain why someone would want or need to

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane
So I have determined that it's dying when I unbind and bind a new click function to that item. Where it starts: $(this).unbind();$ (this).click(function(){... When I commented this out, it works (of course it doesn't have that second click function). On Jun 4, 10:28 am, Shelane <[EMAIL PROTECTED

[jQuery] Re: SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Rob Wilkerson
Well, then I might be crossing several lines here. Each of my li's is floated left. I tried other rounded corners plugins, but CurvyCorners handled more situations better than the others (although I no longer remember specifics). I just can't get a handle on this particular issue. On 6/4/07,

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Karl Swedberg
A good place to start here would be to wrap your DOM elements in $(), so it would look like this: var htmlW = $('class="windowTop">Window examplediv>src="images/window_max.jpg" class="windowMax" />class="windowBottom"> div>bla 1bla 2bla 3div>'); then call your createWindow function within do

[jQuery] Re: $.post not load why?

2007-06-04 Thread Mika Tuupola
On Jun 4, 2007, at 7:11 PM, Massimiliano Marini wrote: ajax can't work cross domain by design for security reasons. There's no other method, workaround or something else? You could run a proxy script in server where Javascript is downloaded from. Simple proxy.php can be written with one

[jQuery] Eliminating a plugin instance

2007-06-04 Thread Jose
A typical plugin pattern is $.fn.plugin = function( options ) { ... this.each(function() { var elem = this; new $.plugin(elem, options); }); return this; }; and to call the plugin $(function() { $("#my_id").plugin(options); }); How would I go about deleting the plugin instance so that

[jQuery] script killing IE

2007-06-04 Thread Shelane
I have this script that is absolutely killing IE, but works fine in FF. I wish I could post the working model, but it's behind our firewall. Here's the script: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(function(){ $('#sbmsdat

[jQuery] Re: Bug? $('#foo #bar')

2007-06-04 Thread Sean Catchpole
More importantly, why are you using two ID's? Remember, ID's are supposed to be unique, so just $('#bar') should work. If your ID's aren't unique, I highly suggest you change them to classes. ~Sean

[jQuery] Re: SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Glen Lipka
I have had alot of problems with the different curved corners scripts. In IE, I find that it requires a background-color or image to work properly. Then I also find that IE6 acts strange in certain "float:left" situations, but I can't put my finger on it. Glen On 6/4/07, Rob Wilkerson <[EMAIL PR

[jQuery] SOT : CurvyCorners Plugin Issue in IE

2007-06-04 Thread Rob Wilkerson
I tried to post this question on the CurvyCorner forum, but it wouldn't let me activate my registration, so I thought I'd try here in the hopes that other users of the plugin can offer some insight. The plugin works great in Firefox and IE6 (my test browsers for now), but in IE, as soon as I add

[jQuery] AjaxExperience 2007 Presentation

2007-06-04 Thread Glen Lipka
http://ajaxexperience.techtarget.com/west/html/speakers.html#GLipka http://ajaxexperience.techtarget.com/west/html/sessions.html#GLipkajQuery Personally, I think it's a fluke. The conference is most about "Ajax", so I sent in a proposal about "Experience". Insane huh? I haven't spoken to a crow

[jQuery] Re: TableSorter question

2007-06-04 Thread mdrisser
Try using something similar to the following: // TableSorter $('.reportTable').tableSorter({ sortColumn: 'date', // Integer or String of the name of the column to sort by. sortDir: 2, // Change the default sor

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Andy Matthews
Right... More of a suggestion than a criticism Remy...it's a great idea, and extremely well implemented. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Remy Sharp Sent: Monday, June 04, 2007 10:17 AM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Renato Formato
Michael Edmondson ha scritto: I am working on writing a plugin that, given a list of words/phrases, will link text. That sounds so ... less than spectacular. The concept is similar to those in-text ads, except without the popups/bubbles. (Even less spectacular-sounding.) I was wondering if t

[jQuery] JQuery hide/show bug in Safari

2007-06-04 Thread jdl
hi all. im having a few problems with a safari bug with a jquery hide/show div.. please click on the core-approach section here. http://www.fifthcorner.co.uk/build/fraser/index.php?s=about it loads correctly but when you click hide, then show, the div reappears, then jumps to the top left. th

[jQuery] Question about jQuery effects and append method

2007-06-04 Thread radzio
Hi! I'm making js script which allows to create div floating windows. I want to use jQuery + interface but I met with difficulties. I create html code with js: function createWindow() { var windowId = '#test'; var htmlW = 'Window example bla 1bla 2bla 3';

[jQuery] Re: $.post not load why?

2007-06-04 Thread Massimiliano Marini
> Depends on what you are trying to do, if you can run php on your > server, you can pull in the external site and the use ajax to > reference that php page. Not always php is present, I want to include a script and a div in html page, the script must populate the div querying a .php file in anot

[jQuery] Re: $.post not load why?

2007-06-04 Thread Benjamin Sterling
Depends on what you are trying to do, if you can run php on your server, you can pull in the external site and the use ajax to reference that php page. On 6/4/07, Massimiliano Marini <[EMAIL PROTECTED]> wrote: > ajax can't work cross domain by design for security reasons. There's no other met

[jQuery] Re: $.post not load why?

2007-06-04 Thread Massimiliano Marini
> ajax can't work cross domain by design for security reasons. There's no other method, workaround or something else? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ "It's easier to invent the future than to predict it." -- Alan Kay

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Bil Corry
joomlafreak wrote on 6/4/2007 8:03 AM: I hope you would reply to this rather mundane question for you. Thanks again I know you found the answer; the reason I didn't provide it is because I don't use PHP, so I'm unfamiliar with how headers are set within it. - Bil

[jQuery] Re: $.post not load why?

2007-06-04 Thread Renato Formato
Massimiliano Marini ha scritto: I want to load news in my html page from a php script from another site. I have included this script in my html page, but not work, maybe I'm wrong using $.post? $(document).ready(function(){ $.post("http://www.othersite.it/news.php";, f

[jQuery] $.post not load why?

2007-06-04 Thread Massimiliano Marini
I want to load news in my html page from a php script from another site. I have included this script in my html page, but not work, maybe I'm wrong using $.post? $(document).ready(function(){ $.post("http://www.othersite.it/news.php";, function(data){

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Mike Alsup
Nice work, Remy! Thanks for picking this up guys. @Andy - I'll add an option over the next couple of days to compress the output - something that allows you to see more without having to scroll.

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Mike Alsup
jQuery's ajax functionality merely uses the native encodeURIComponent method that JavaScript provides. I should also mention that ALL the major JS libraries (dojo, YUI, Prototype, Moo, etc) use this same technique. Mike

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Remy Sharp
Thanks for picking this up guys. @Andy - I'll add an option over the next couple of days to compress the output - something that allows you to see more without having to scroll. On Jun 4, 3:48 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > That's VERY nice. Wish the text was a little smaller.

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread Mike Alsup
Oscar, JavaScript provides native encoding capabilities for UTF-8 only. jQuery's ajax functionality merely uses the native encodeURIComponent method that JavaScript provides. If your server depends on processing 8859 then you need to do one of the following: 1. Do not use ajax for these pages.

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread joomlafreak
ok I read bout it and found it. It has to included in the php file I am calling. Will test it now. thanks a lot On Jun 4, 11:03 am, joomlafreak <[EMAIL PROTECTED]> wrote: > hi > thanks for the this more elaborate explanation. I still have one > question though. > Where do I specify my charset so

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread joomlafreak
hi thanks for the this more elaborate explanation. I still have one question though. Where do I specify my charset so make the change in response header, in the output from the php file that I am using to query with GET or in the ajax call itself to this php file, which I suppose would be using be

  1   2   >