[jQuery] Re: calling all jQuery Safari wizards!

2007-10-04 Thread lukas | dressy vagabonds
some time ago i started a rewrite of the lightbox plugin for jquery and i encountered the same problem. strangely, safari doesn't support the Image() function in a way, that it creates a new DOM-Element for you. the solution was not to use the javascript Image() function but use img = doc

[jQuery] Re: Animating scrollLeft

2007-10-04 Thread george.gsgd
Two links that might help as well. http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12 http://blog.viget.com/team-viget-under-the-hood/ Cheers, George. On Aug 13, 1:27 am, interfaced <[EMAIL PROTECTED]> wrote: > Is there a way to take this scrolling functionality and use it

[jQuery] Loading image with $.get()?

2007-10-04 Thread Andy Matthews
I'm working on a sample gallery viewer app with 3 panes. Left = gallery listing, middle = album listing, and the far right = image viewer. I'm loading in the contents of each using jQuery. I've finally gotten to the far right one and I'm trying to load in the image using a get() call and it's not

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Rick Faircloth
Very good... thanks, Joel... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Thursday, October 04, 2007 11:33 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [Site Submission]: nbc.com On 10/5/07, Rick Faircloth <

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Joel Birch
On 10/5/07, Rick Faircloth <[EMAIL PROTECTED]> wrote: > So, superfish can do those large drop-down, across the page menus? > Rick Yes, the types of menu that Superfish can power is is not limited to the few demonstrations I show with the documentation. If you have the CSS skills, you can create n

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Rick Faircloth
So, superfish can do those large drop-down, across the page menus? Those are nice...I've never been a fan of drop-down or fly-out menus because I've noticed too many people having trouble remembering how to drill down to where they saw something. So I've always stuck to the traditional left-colu

[jQuery] Re: JQuery AJAX with .NET - Limitations

2007-10-04 Thread Jeffrey Kretz
Unfortunately, .so far as I know, .NET doesn't let you post to a user control. For what it's worth, the .NET projects I've done with jQuery used a separate ashx page to handle all ajax requests. I created an IHttpHandler, mapped it in the web.config file, and in that handler applied the va

[jQuery] show/hide FAQ - simplify my code?

2007-10-04 Thread MichaelEvangelista
http://www.mredesign.com/demos/jquery-show-hide/#thedemo got it working just the way I wanted (thanks, Glen!) I wrote out these rules long hand as I went through the creation/learning process, but I am sure there are several ways I could compact this to fewer lines. Anybody want to have a sh

[jQuery] Re: noob: input field focus help

2007-10-04 Thread Lee Hinde
On 10/4/07, crybaby <[EMAIL PROTECTED]> wrote: > > I tried the following code, and I don't get the cursor to blink in > input text field. Any idea why is that? > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> > http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en"> > >

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Joel Birch
On 10/5/07, Karl Swedberg <[EMAIL PROTECTED]> wrote: > They appended a few plugins to the core jquery file and packed them, so I > couldn't tell exactly what else was being used. > --Karl Thanks Karl! I found it in with the packed jQuery core and a bunch of other plugins, some packed (tabs, shad

[jQuery] Re: jQuery newsgroups? (nntp)

2007-10-04 Thread MichaelEvangelista
tEsTiNg Is this thing on... ? -- -- "MichaelEvangelista" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Odd, I can read the group fine with my newsreader but am getting bounce messages from my post, saying I have to join the group to post. I'll try deleting the account and rejo

[jQuery] Re: Noob click-change-click question re. parent class rules

2007-10-04 Thread MichaelEvangelista
I was thinking toggle() would always do the first function on the first click, even if the class is already in place. i.e. clicking on p.selected in the DOM would give you a null click the first time with this example. Is that right? I was able to get what I needed by using toggle() on the sh

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Karl Swedberg
Hey, Congrats on that, Joel! They appended a few plugins to the core jquery file and packed them, so I couldn't tell exactly what else was being used. Very, very cool! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 4, 2007, at 10:40 PM, Joel Bir

[jQuery] Re: firebug error: $ is not defined

2007-10-04 Thread Karl Swedberg
When you get that error in Firebug, it's almost always because the jquery.js file has not been included or your reference to it is pointing to the wrong location. Take a look at "Setting up the HTML Document" beginning on page 8, especially this part on page 10: After the stylesheet is refe

[jQuery] Re: jQuery newsgroups? (nntp)

2007-10-04 Thread MichaelEvangelista
Odd, I can read the group fine with my newsreader but am getting bounce messages from my post, saying I have to join the group to post. I'll try deleting the account and rejoining On Oct 3, 10:34 am, RealET <[EMAIL PROTECTED]> wrote: > * MichaelEvangelista tapuscrivait, le 03/10/2007 17:44:> Is

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Joel Birch
On 10/5/07, Steve Finkelstein <[EMAIL PROTECTED]> wrote: > Dang, I really like the mouseover menu they have on their landing > page. Is that just simple CSS? Wow, that menu uses my Superfish plugin! What a thrill to see it hit the big time :) Joel Birch.

[jQuery] Re: firebug error: $ is not defined

2007-10-04 Thread Benjamin Sterling
crybaby, Two questions: Did you include the jquery core file? ie. jquery-1.2.1.js or jquery-1.2.1.pack.js Is the path to the file correct? On 10/4/07, crybaby <[EMAIL PROTECTED]> wrote: > > > I just got the Learning jQuery book from amazon delivered yesterday. > I am trying out the first chapter

[jQuery] Re: $("#id").get() vs getElementByID()

2007-10-04 Thread Karl Rudd
I meant to say: "get()" (without a number argument) will return _all_ the results in an array, regardless of whether there is 1 or 200 results in the jQuery object. Karl Rudd On 10/5/07, Karl Rudd <[EMAIL PROTECTED]> wrote: > Try: > var doodad = $("#plasma").get(0); > or > var doodad =

[jQuery] Re: $("#id").get() vs getElementByID()

2007-10-04 Thread Karl Rudd
Try: var doodad = $("#plasma").get(0); or var doodad = $("#plasma")[0]; "get()" (without a number argument) will return the results in an array, regardless of whether there is 1 or 200 results in the jQuery object. Karl Rudd On 10/5/07, Mark Lacas <[EMAIL PROTECTED]> wrote: > > Hello, >

[jQuery] thumbnails in jCarousel inquiry

2007-10-04 Thread Steve Finkelstein
Hi all, My thumbnails in jCarousel are distorting the aspect ratio of my photos. Here's an example: http://www.f1autoimports.com/inventory/single/11 Would anyone be kind enough to tell me how I can re-adjust the default size to make this look more 'proper' per se? Thanks. :-) - sf

[jQuery] Ajax Idea: Would like some feedback

2007-10-04 Thread Half-Dead
I develop a tchat in ajax and needed to save some space in the json that comes back from the server, so instead of sending messages like [Name:Value,Name:Value,..] which can get quite big if you return a collection of 50-100 users with lots of info, i wanted something more like [Value,Value,Va

[jQuery] Re: Superfish Menu Problems - white space

2007-10-04 Thread Ryura
Thanks a ton! It works great. On Oct 4, 12:12 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Hi Ryura, > > I have to be quick because I am supposed to be asleep, but basically: > > 1) remove the left padding on .nav li ul > 2) change any value that is 9.45em or 7.45em to read: 160px. This is > be

[jQuery] Re: Flash and jQuery

2007-10-04 Thread Brett
Interesting, I googled up and found an example of this: http://www.quirksmode.org/js/flash_call.html Not jQuery as such in the demo, but any function you write can refer to jQuery. On Oct 5, 8:10 am, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > your flash would need to be wmode=transparent > > an

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

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread matthew knight
@Sharique Yes, it'll work with .NET (just create an aspx page that spits out a table as per the instrux), and set the 'url' param accordingly in the options. Remember, ingrid's just making an ajax call to some more HTML. Something like this will work: $(document).ready( function() {

[jQuery] Re: Snippet of calculation between two date/time

2007-10-04 Thread sgrover
I have a plugin available on my site that is meant for working with dates. http://grover.open2space.com/node/157. The docs are a little rough, and there have been a couple minor reported issues. But otherwise the date manipulation code works good. I wouldn't use the popup calendar that's in

[jQuery] $("#id").get() vs getElementByID()

2007-10-04 Thread Mark Lacas
Hello, This works when calling an external javascript library: var doodad = document.getElementById("plasma"); Drag.init( doodad ); And this doesn't: var doodad = $("#plasma").get(); Drag.init( doodad ); They both return [object HTMLDivElement] Am I missing something? Thanks, ml

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
I don't know what's up with these groups but none of my replies are getting posted... Joel, I took a look at your code and your use of the timeout function was exactly what I needed. Thank you. Wizzud, Thanks for pointing out my mess between parent and children. I scratched that whole thing. If

[jQuery] Re: How to hide a div without a click function

2007-10-04 Thread somnamblst
Thanks Glen, I have the following $(document).ready(function() { initSlideboxes(); function initSlideboxes() { $('#slidebar').slideDown("slow"); setTimeout(function() { $('#slidebar').slideUp("slow"); }, 7000); $('#slidebar').html($('#hidebar').html()); $('

[jQuery] jQuery 1.2.1 and Interface/ui Sortable Bug?

2007-10-04 Thread Brandon!
I have noticed a bug with jQuery 1.2.1 and any type of sortable extension (I have tested with both Interface and UI) where once you do the initial sort, jQuery will throw a bunch of errors every second in an infinite loop. I can reproduce their error easily on Firefox 2 with not only my script (w

[jQuery] noob: input field focus help

2007-10-04 Thread crybaby
I tried the following code, and I don't get the cursor to blink in input text field. Any idea why is that? http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en"> $(document).ready(function(){ $('[EMAIL PROTECTED]"text"]

[jQuery] firebug error: $ is not defined

2007-10-04 Thread crybaby
I just got the Learning jQuery book from amazon delivered yesterday. I am trying out the first chapter. When add the alice.js on the html file and open it into the browser, I get this error in firebug: $ is no defined my alice.js file has the following content: $(document).ready(function() {

[jQuery] Re: EXTjs and Jquery

2007-10-04 Thread Steve Brownlee
Brook: Yes, and it's a match made in heaven because jQuery is, in my opinion, unmatched at DOM traversing, event handling and element manipulation. Ext, as you notice when you're drooling, is by far the best framework for making things pretty. As for working together, as long as you download the

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
Thanks Wizzud... i scratched that whole jumping up and down within the parents and children thing... it was overkill in the first place. Thanks for your help though! On Oct 4, 4:08 am, Wizzud <[EMAIL PROTECTED]> wrote: > Some ideas... > > Firstly, if you return false from any event handler it wil

[jQuery] Re: Problem with binding mouseout to only parent div

2007-10-04 Thread Brandon
Joel, The problem is I didn't want to spend another day or two rewriting my whole menu system and css files while trying to figure out another menu plugin. Mine is working just fine and has been tested and has worked in all browsers for over a year, i just wanted to convert the js to jquery to cu

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-04 Thread jshArea
Published: http://jsharea.googlecode.com/files/jshArea-01.tgz

[jQuery] jqMultiselect extended

2007-10-04 Thread ayryq
Some more modifications to the handy "jqMultiSelects" plugin by rob.desbois (http://code.google.com/p/jqmultiselects/) An additional optional parameter to define the mode as one of 'move' (the default, old behavior), 'copy', or 'remove' Created to allow duplication in the destination select box. A

[jQuery] Scope and Visibility from Callback

2007-10-04 Thread NeilM
I want to create a 'closed' object (sorry, not sure what the right term is), e.g. var myObj = { foo : function() { $("#myLink").click(function(){ // How can I call the bar() method from here? What I would // really like to be able to do is call... // this.bar(); //

[jQuery] Re: live query

2007-10-04 Thread bluejam
hi all it ok I managed to do it another way using .find

[jQuery] JQuery AJAX with .NET - Limitations

2007-10-04 Thread AndyP
I noticed the following problem in using jquery AJAX with .NET: NOTE: I don't have the below problems if I use AjaxPro, just wanted to do the same with JQuery. Is this is possible, or should I just stick with AjaxPro. 1) Cannot return a Datatable to the callback function [AjaxPro.AjaxMe

[jQuery] Re: Flash and jQuery

2007-10-04 Thread Sam Sherlock
your flash would need to be wmode=transparent and you'd need to call a javascript function from within flash that in turn calls the grey box function since jquery applies the onclick event to all anchors with a class of greybox you'll need simluar code inside you function that you call from flash

[jQuery] Re: jscrollpane plugin problem

2007-10-04 Thread Kelvin Luck
Maybe! I haven't used jQuery live yet so I couldn't say. Do you have an example of it working like this? Cheers, Kelvin :) Alexandre Plennevaux wrote: isn't the jquery live plugin exactly meant to do that? I have it work here along with jscrollpane and it works perfectly. -Original M

[jQuery] Re: jQ SqueezeBox - Expand All?

2007-10-04 Thread will
$('.stuff dl').Squeezebox(); $("a.expandall").click( function() { $('.stuff dl dd').slideDown("fast"); $('.stuff dl dt').addClass("selected"); return false; }); worked just fine. Thanks for reading, Will will wrote: > Hi,

[jQuery] Re: jscrollpane plugin problem

2007-10-04 Thread Alexandre Plennevaux
isn't the jquery live plugin exactly meant to do that? I have it work here along with jscrollpane and it works perfectly. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kelvin Luck Sent: jeudi 4 octobre 2007 21:21 To: jquery-en@googlegroups.com

[jQuery] Re: [Site Submission]: nbc.com

2007-10-04 Thread Steve Finkelstein
Dang, I really like the mouseover menu they have on their landing page. Is that just simple CSS? On 10/4/07, John Resig <[EMAIL PROTECTED]> wrote: > > > Maybe we can get John on Jay Leno... > > That would be the most boring late night interview, ever. :-P > > --John >

[jQuery] Re: Validation madness

2007-10-04 Thread Jörn Zaefferer
Josh Nathanson schrieb: Steve, odd that I was just helping another poster named Fabien with this yesterday. Here's the way: $("#myform").submit(function() { // do your extra form stuff here var v = $(this).validate(validateOptionsHere); if (v.form()) // runs form v

[jQuery] Re: Bind event that should be executed first

2007-10-04 Thread Jörn Zaefferer
Fabien Meghazi schrieb: Do you bind submit buttons onclick or form's onsubmit for validation ? The submit event. You can submit a form by pressing enter without any submit button. -- Jörn

[jQuery] Re: jscrollpane plugin problem

2007-10-04 Thread Kelvin Luck
It shouldn't be too slow to call jScrollPane on your div after everytime you add content to it. Is this what you tried? I just did a quick bit of playing around with making the scroll pane automatically update itself and got it working in Firefox thanks to the DOMNodeInserted event but could

[jQuery] Re: JQuery AJAX with .NET - Limitations

2007-10-04 Thread seedy
I am not sure what you are trying to do in case 1. In case 2, the cause is because iis doesn't serve ascx files. Browse to http:://website/wucPeopleList.ascx. What you see if the same thing jquery sees when you try to post to it. It is my understanding you can continue to use AJAXpro on the

[jQuery] Re: Release: jQuery treeview plugin 1.3

2007-10-04 Thread Jörn Zaefferer
Guy Fraser schrieb: If you could match the feature set of the nlstree [1] it would be really awesome: [1] http://www.addobject.com/products/javascript/tree/nlstree.php If you need keyboard navigation, async loading and d&d and similar stuff you need to either wait for the UI tree component

[jQuery] Re: Cool sitemap code

2007-10-04 Thread Andy Matthews
It's just a set of UL and LI tags. I'm sure you could put any code you like in there. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ty Sent: Thursday, October 04, 2007 2:33 PM To: jQuery (English) Subject: [jQuery] Re: Cool sitemap code Than

[jQuery] Re: Forms with asp.net

2007-10-04 Thread Sharique
Thanks man. I have play it with more. I want to replace update panel with jquery forms. On Oct 5, 12:09 am, seedy <[EMAIL PROTECTED]> wrote: > Ok so I haven't tested this , but I notice a few things right away. > Your tags point to different paths, jquery seems to be in /js and > the forms plugi

[jQuery] Re: [NEWS] Cool sitemap code

2007-10-04 Thread Andy Matthews
What?!? It doesn't build the sitemap list FOR you? Screw that! Just kidding. That's a NICE little bit of code. VERY sweet. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, October 04, 2007 2:20 PM To: jQuery Discussion

[jQuery] Re: Validation madness

2007-10-04 Thread Steve Blades
That's funny, I was just plowing through a filtered list of the jquery list emails, trying to figure it all out. Thanks for the assist Josh, knew it should be something simple. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer

[jQuery] Re: Cool sitemap code

2007-10-04 Thread Ty
Thanks Rey bippety-BeatBox-Bang-O hey the Site map could contain links to the actual pages, could it not? Just curious, I'm thinking that's pretty much the point of a site map, one-click access to all things in the site. Thanks. On Oct 4, 3:20 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > So his maj

[jQuery] Re: Validation madness

2007-10-04 Thread Josh Nathanson
Steve, odd that I was just helping another poster named Fabien with this yesterday. Here's the way: $("#myform").submit(function() { // do your extra form stuff here var v = $(this).validate(validateOptionsHere); if (v.form()) // runs form validation and returns true if

[jQuery] [NEWS] Cool sitemap code

2007-10-04 Thread Rey Bango
So his majesty, Brandon Aaron, demanded that I post this on the list and as Brandon is a intimidating at times, of course I had to follow orders! ;) This cool CSS Sitemap uses jQuery and CSS to produce a very neat looking sitemap. http://betech.virginia.edu/index.php/2007/10/03/css-sitemap/

[jQuery] Re: Validation madness

2007-10-04 Thread Steve Blades
ahhh, so the submit handler will run...when? I have some things I need to do with some of these fields prior to the actual form submission. On 10/4/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > Steve, you have an infinite loop, because your submitHandler is > re-submitting the form, which

[jQuery] Re: Validation madness

2007-10-04 Thread Josh Nathanson
Steve, you have an infinite loop, because your submitHandler is re-submitting the form, which then calls the validate handler, which then runs submitHandler and so on. The validation plugin will automatically submit the form if no errors are found, so you don't need to have a separate submitH

[jQuery] Re: Forms with asp.net

2007-10-04 Thread seedy
Ok so I haven't tested this , but I notice a few things right away. Your tags point to different paths, jquery seems to be in /js and the forms plugin is in /. This is ok if those are the paths to those files, I just mentioned it as I was not sure if this was intentional or not. However, the r

[jQuery] Re: Obscure ie6 error when appending iframe

2007-10-04 Thread Josh Nathanson
Yup, I tried appending first and then adding the src attribute after, still same error. I think I am going to bail out on the iframe implementation, and just do a regular DOM insertion. I'm sick of battling with IE. -- Josh - Original Message - From: Benjamin Sterling To: jqu

[jQuery] Validation madness

2007-10-04 Thread Steve Blades
I'm using the validator plugin, and I have some code like this: var errContainer = $('#CSForm div.error'); $('form#CSForm').validate({ errorContainer: errContainer, errorLabelContainer: $("ol",errContainer), rules: { First_Name: "required", L

[jQuery] Re: Forms with asp.net

2007-10-04 Thread Sharique
I have one textbox, one button, one label- all asp.net controls. What I trying to do : when user click button text of text box is displayed on label. Here is the code - <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Forms1.aspx.cs" Inherits="Forms" %> http://www.w3.org

[jQuery] Re: Obscure ie6 error when appending iframe

2007-10-04 Thread Benjamin Sterling
Josh, Did you try appending without the src attribute, just to make sure the page being loaded is not the issue? On 10/4/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > > Hey all, > > When trying to create an iframe on the fly and append it into the dom, I'm > getting an error in IE6: "Expected

[jQuery] Re: jscrollpane plugin problem

2007-10-04 Thread Guillermo Movia
Hi, thanks for your answer. We tried this, but when a lot of news are too slow. We wish to know if maybe there's another solution. Guillermo 2007/10/3, Alexandre Plennevaux <[EMAIL PROTECTED]>: > > AFAIK you have to recall the function, or you can use the jquery live plugin > > > -Original

[jQuery] Re: EXTjs and Jquery

2007-10-04 Thread Steve Blades
I find that they play very well together. I use the jquery adapter built to bridge jquery and ExtJs, but it isn't a necessity, ExtJS has it's own DOM selector methods. I just find the JQuery syntax very easy, and it's handling of DOM manipulation very robust. I use ExtJS primarily for it's beautifu

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread Sharique
Really nice work. Did it works will asp.net as well? On Oct 4, 3:15 am, reconstrukt <[EMAIL PROTECTED]> wrote: > Hey all, > > I just released Just finished the initial release of my datagrid > plugin. I named her Ingrid. :) > > Features in this release: > > - resizable columns > - paging toolba

[jQuery] Re: Question about jScrollPane - full body scroll

2007-10-04 Thread Kelvin Luck
Hi, This line: $('body>.jScrollPaneContainer').css({'height': $w.height() + 'px', 'width': $w.width() + 'px'}); translates to: "Set the height and width of the element with a class of jScrollPaneContainer directly inside the body (e.g. not nested any deeper) to the height and width of the w

[jQuery] Re: jScrollpane - Occasionaly runs in IE? (init/load problem)

2007-10-04 Thread Kelvin Luck
Hi, Glad you like jScrollPane. I can only take a very quick look at this at the moment but I'm wondering if it's something to do with this bit of your JS: window.onload = function(){ $("tr:nth-child(even)").addClass("even"); }; I think I remember having issues where using this "old scho

[jQuery] Snippet of calculation between two date/time

2007-10-04 Thread Estevão Lucas
HI, I know that I'm on jQuery's discussion list, but I'm tired of search for this. What i would like to know is if someone have a snippet of calculation between two complete dates (year,month,day,hour,minutes and seconds) Regards

[jQuery] Re: Speed issues when using jQuery on webapp

2007-10-04 Thread Robert Wagner
2007/9/13, Flesler <[EMAIL PROTECTED]>: > > My opinion.. Live Query is a great plugin, but it's not the fastest > way to do that (although it is the safest, easiest, cleaniest). All > the work I made on tables, I solved it using event delegation. Instead > of binding, unbinding, rebinding, bind on

[jQuery] Obscure ie6 error when appending iframe

2007-10-04 Thread Josh Nathanson
Hey all, When trying to create an iframe on the fly and append it into the dom, I'm getting an error in IE6: "Expected ':'" (that's a colon). Works fine in FF of course. The basic code: var i = $("id='panelframe'>"); $("#paneldiv").append(i); When I comment out the append part, it works

[jQuery] Re: AjaxCFC

2007-10-04 Thread Jack Killpatrick
Not sure if this will work, but maybe try passing it as a 2nd arg in the success call: var _this = this; success: function(data, _this){ alert(_this.someProperty): } - Jack Brook Davies wrote: Thanks for the feecback Jack. I am using the success() method and within that method I want to

[jQuery] Re: Masked Input Plugin 1.1

2007-10-04 Thread Josh Bush
For those that care, the problem ended up being a result of my using $.each() over a string. Apparently IE won't let you use [] to access an individual character from a string. The solution for me was to call .split on the string as I passed it into $.each() so that it looks like this "$.each(my

[jQuery] Re: multiple ajax selects; dynamic selects don't support onchange?

2007-10-04 Thread Web Specialist
Rob great job. Two questions: - how to use your plugin in update pages(with selected item); - it is possible to start a function after last select field is loaded? Cheers 2007/9/27, Rob D <[EMAIL PROTECTED]>: > > > Hi Karl, > > Thanks for your feedback, I will certainly make that modification

[jQuery] Re: AjaxCFC

2007-10-04 Thread Christopher Jordan
Email Rob Gonda and see what he says about all this. He's the ultimate source on ajaxCFC anyway. If you get an answer to this, it'd be cool to hear about it. Chris On 10/4/07, Brook Davies <[EMAIL PROTECTED]> wrote: > > Thanks for the feecback Jack. I am using the success() method and within >

[jQuery] Re: ajaxCFC and CF8

2007-10-04 Thread Andy Matthews
I'd say it would be. While CF8 does have built-in JS, the code they've offered is fairly bloated and a little excessive. It's good for people who don't know how to write their own JS, but if you want client code that's lean and mean, then use your own stuff. _ From: jquery-en@googlegroups

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-04 Thread John Beppu
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). > > > Any idea why it fails in Safari? The Safari Javascript console gives > me n

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread Web Specialist
Matt, may be another users can report that occurrence when next button is clicked. Using FF 2.0.0.7(Firebug enabled) and after page loads, clicking in next button starts 3 request to the server(remote.php). Thanks for your time. Marco Antonio 2007/10/4, matthew knight <[EMAIL PROTECTED]>: > > >

[jQuery] Re: ajaxCFC and CF8

2007-10-04 Thread Brook Davies
Thanks Rey! I didn't so much mean about using the built in ajax components, but more along the lines of all the work ajaxCFC does converting to json and such. Isn't some of that functionality build into CF8 now? BrookD -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAI

[jQuery] EXTjs and Jquery

2007-10-04 Thread Brook Davies
Steve, You mention that you use extJS and jQuery. How do they work together and how is this a beneficial relationship? I drool when I see the ext demos. How do the two technologies play together? BrookD

[jQuery] Re: Superfish Menu Problems - white space

2007-10-04 Thread Joel Birch
Hi Ryura, I have to be quick because I am supposed to be asleep, but basically: 1) remove the left padding on .nav li ul 2) change any value that is 9.45em or 7.45em to read: 160px. This is because you are using 160px wide images instead of text so you want a fixed unit of measurement for the wi

[jQuery] Re: My first lessen didn't go well. I need your help.

2007-10-04 Thread Glen Lipka
You need to document.ready() block. What is happening is that your script is trying to find all the A tags on the page. But at the moment it's running, there are no A tags yet. They come nanoseconds later when the page loads. $(document).ready(function(){ // Your code here }); Try again w

[jQuery] Re: ANNOUCE: Easing Plugin Updated

2007-10-04 Thread Glen Lipka
My favorite plugin. #1. Glen On 10/4/07, george.gsgd <[EMAIL PROTECTED]> wrote: > > > Made some changes to the easing plugin, it now contains all of the > Penner equations and has name changes for the easing types. I've done > a compatibility plugin to ease the transition, but felt keeping the >

[jQuery] ContextMenu visibility at window edges problem

2007-10-04 Thread Juanita
There is an ennoying point with the current ContextMenu plugin. When a menu pops out near a window borders, it is only partially visible. xing What is the correct javascript bouding test to apply to reposition the element correctly ? I thought maybe there is a jquery plugin for this kind of eleme

[jQuery] Flash and jQuery

2007-10-04 Thread njsuperfreak
Can Flash communicate with jQuery? I would like to use flash to interact with jQuery like opening up a dialogbox using the greybox.js plugin. How would I go about doing that any ideas? The code is activated by the class="greybox"

[jQuery] Re: Packed version of BlockUI?

2007-10-04 Thread Steve Brownlee
Blame Google. I sent that message at 10:30 yesterday morning!! On Oct 4, 8:42 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Sadly I've already gotten BlockUI to do what I wanted. Packed it's at 7k. So > for the time being I'll keep what I've got, but move to jqModal for future > projects. > >

[jQuery] jScrollpane - Occasionaly runs in IE? (init/load problem)

2007-10-04 Thread Brett
Hey all, LOVING jScrollpane at the moment, here is a page I'm working on. http://cressaid.brettjamesonline.com/bvci/plastek/products1.html The right area with the grey box is a scrollpane which will have a bunch of different things in it. If you view it in firefox, you'll see that the grey scrol

[jQuery] Re: ajaxCFC and CF8

2007-10-04 Thread Steve Brownlee
I'll chime in on this topic as well. The Javascript objects that are available in CF8 are, as Rey said, simplistic and for people who need a neat little widget in their application. I am still heavily reliant upon ajaxCFC because I use the Ext library with the jQuery adapter. For advanced AJAX d

[jQuery] Re: How to hide a div without a click function

2007-10-04 Thread motob
You could also try using setTimeout() like so: setTimeout(function() { $('#slidebar').toggle(); }, 2000); This will activate the #slidebar toggle after 2000 milliseconds even is the user is trying to interact with the #slidebar which may not be what you want. I'm not sure what the slide bar is

[jQuery] Re: AjaxCFC

2007-10-04 Thread Brook Davies
Thanks for the feecback Jack. I am using the success() method and within that method I want to call a method on the current object. The reason is because I have spawned multiple objects and they all fetch data via ajaxCFC and I want the correct object to handle the result. I could save a refer

[jQuery] Re: How to hide a div without a click function

2007-10-04 Thread somnamblst
Like this? $(document).ready(function() { initSlideboxes(); function initSlideboxes() $('#slidebar').slideDown('slow'); setTimeout( function() { alert( 'timer!' ); }, 1000 ); .slideUp('slow', function() { $('#slidebartrigger').click(function(){$('#slidebar').toggle

[jQuery] Advanced mapulation, new style of navigation for jquery

2007-10-04 Thread Lukey B
Hi All, As per this previous post I made http://tinyurl.com/27gaty I have cracked on and started to develop a drill down style menu: I have also uploaded a cut down version of what I am trying to do at this link: http://rafb.net/p/KfZAdp80.html Essentially what I am trying to do is as follow

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread matthew knight
Thanks Marco, Also cheers for reporting the bug with the page toolbar textbox - this is now fixed. Download the latest here: http://reconstrukt.com/ingrid/index.html#download Matt On Oct 3, 8:00 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote: > Matt, > > congratulations!!! > > Very very very

[jQuery] Re: Question to experts on jQuery.

2007-10-04 Thread BAlex
I regret, but anything from offered does not work as it is necessary in Firefox and Safari.

[jQuery] Re: $.ajax({datatype:"html"... does not seem to evaluate scripts?

2007-10-04 Thread joelarson
Nevermind everyone, I sorted it out. On Oct 3, 10:18 am, joelarson <[EMAIL PROTECTED]> wrote: > The documentation notes that when using the $.ajax() functions option > datatype="html": > > "html": Returns HTML as plain text; included script tags are > evaluated > > however, it does not appear

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread Fabrizio
Well done !!! Thank you for your plugin Fabrizio

[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=14&ID=39〈=1 (navigate through the pics by using the small arrows to the right of the picture) It works ok in all tested b

[jQuery] Re-ordering a list

2007-10-04 Thread skinnytiger
I'm trying to create an unordered list that can be reordered using a link. What I want to do is show a list of images+text and when you hit the link for the image it comes to the top of the list and the others in the list move to fill the space left by the new top list item. Any guidance would b

[jQuery] Re: the jquery logo

2007-10-04 Thread sgrover
I think that would be fair use. Afterall, you are not using the logo for some other purpose, and you are recognizing jQuery with the logo and link. I don't see how that would be any different than me putting an IBM or Microsoft logo into my blog entries with links back to their site. I'm obv

  1   2   >