[jQuery] www.na3.it

2008-03-31 Thread GianCarlo Mingati
Hello, this is a new site i've made for an architect. It uses the jquery.cycle plugin for most of the slides. Check out the 'projects' page for a sliding accordion menu. If the items for each sub category contains more than 5 items, a 'sliding' interface is created (check the 'design' catgeory).

[jQuery] Re: www.na3.it

2008-03-31 Thread GianCarlo Mingati
http://www.na3.it On Mar 31, 10:09 am, GianCarlo Mingati [EMAIL PROTECTED] wrote: Hello, this is a new site i've made for an architect. It uses the jquery.cycle plugin for most of the slides. Check out the 'projects' page for a sliding accordion menu. If the items for each sub category

[jQuery] Problem validate under IE

2008-03-31 Thread David
http://www.contaflux.ro/gestiune/module/intrari.php I have two problems: 1. This script works good in FF, but it doesn't work in IE6. I have been trying to solve it for 2 day, but i didn't succeed. Please help me. 2. The method resetForm from plugin validate it doesn't work neither in IE6 nor FF.

[jQuery] Re: jcarousel scroll breaks in IE6 + IE7

2008-03-31 Thread Jan Sorgalla
Hi, you should initialize jCarousel like this: jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ scroll: 1 }); }); Remove the comma after scroll: 1 IE does not accept a comma after the last entry in hashes. On 25 Mrz., 16:19, [EMAIL PROTECTED] [EMAIL

[jQuery] Re: first child of type form control

2008-03-31 Thread dug
Thanks Jason :-) How would I handle that if the #elHombre object is inside the form? Cheers, Dug On Mar 27, 12:21 pm, Jason Huck [EMAIL PROTECTED] wrote: Try this: $('#elHombre').next('form').children('input select textarea') [0].focus(); - jason On Mar 27, 6:32 am, DugFalby [EMAIL

[jQuery] Re: first child of type form control

2008-03-31 Thread Richard D. Worth
$('form:has(#elHombre)').children('input, select, textarea')[0].focus(); - Richard On Mon, Mar 31, 2008 at 6:12 AM, dug [EMAIL PROTECTED] wrote: Thanks Jason :-) How would I handle that if the #elHombre object is inside the form? Cheers, Dug On Mar 27, 12:21 pm, Jason Huck [EMAIL

[jQuery] Re: first child of type form control

2008-03-31 Thread Richard D. Worth
On second thought, you'll want to use .find, instead of .children, as the elements could likely be within fieldsets and/or divs: $('form:has(#elHombre)').find('input, select, textarea')[0].focus(); Also, here's another way to get the form from the #elHombre:

[jQuery] Re: bind() and thousands of td elements - inline or extrnal?

2008-03-31 Thread Leeoniya
i did the event delegation by hand and it's pretty easy. (tbody).click(myHandler); function myHandler(e) { var e = e || window.event; var elem = e.target || e.srcElement; if (elem.nodeName.toLowerCase() == td) { // do stuff } } however, the jQuery Listen plugin is much more

[jQuery] xpath or operator

2008-03-31 Thread cujjjo
How do you join nodesets or perform a conditional matching on an attribute? The xpath or operator doesn't seem to work (//selector1 | // selector2)=nodeset.

[jQuery] Re: cluetip on Safari Mac throws error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7

2008-03-31 Thread Krittick
Yeah, that page works fine, but my page doesn't, although the syntax doesn't seem to have any issues. Page is visible at http://krittickalhost.net/plans/ The ? text is what triggers the cluetip event on hover. It's using the span title method of displaying it. On Mar 30, 9:01 pm, Karl Swedberg

[jQuery] fadeTo of image makes text jump to next line

2008-03-31 Thread killerwhale65
Hello all, I have a fadeTo in an image (icon) located in front of some text. The fade is triggered when i hover over the image. The problem is that, during the fade, the text next to the icon jumps under the icon, to jump back to its original position when the fade is over. Here is the fade

[jQuery] counter like 1 of 10 for jcarousel

2008-03-31 Thread tetrix
hello; i need to make a function: it should get the length of an array then everytime i click next it should increase its count until the length array ends. the next and prev hits would be placed just under this 1 of 10 counter. can anyone guide me on how to do this? i checked the Cycle plugin

[jQuery] Validator plugin submit with HREF

2008-03-31 Thread Paul Collins
Hi all, I am trying to use an anchor link to submit my form using the Validator plugin, (so I can change the button to a graphic). I would like to know what to put into the HREF to submit to the Validator code. Currently I have: href=javascript:$(this).validate(); This doesn't seem to work

[jQuery] [validate] mulitpage forms

2008-03-31 Thread waynes
Hi, I am using a variation of the multipage form in the demo and run into a small problem with the pageRquired function. Seems it does not validate correctly if you add any custom selectors after the pageRequired. I am trying to make one field required depending on whether another field is

[jQuery] Re: learning jquery book source code

2008-03-31 Thread tetrix
thank you, i'll check this out, very good book btw. On 24 mar, 19:26, Karl Swedberg [EMAIL PROTECTED] wrote: On Mar 24, 2008, at 6:45 AM, tetrix wrote: i have downloaded the code source for learning jquery book but this code doesnt include all chapters in the book??? it /should/

[jQuery] xpath or operator

2008-03-31 Thread cujjjo
Hi, The xpath or operator doesn't seem to work in jdomquery 1.1.3.1. For instance according the the xpath spec this should return one set of nodes:

[jQuery] Re: Chm version of the jQuery api browser

2008-03-31 Thread Alexandre Plennevaux
that? Thanks again alexandre On Mon, Mar 31, 2008 at 6:52 AM, char101 [EMAIL PROTECTED] wrote: Hi, This is a chm version of the jquery api browser http://jqueryjs.googlecode.com/svn/trunk/tools/api-browser/ Download here http://peacech.googlepages.com/jquery-20080331.chm [150KB

[jQuery] Re: bind() and thousands of td elements - inline or extrnal?

2008-03-31 Thread Klaus Hartl
On Mar 31, 9:56 am, Leeoniya [EMAIL PROTECTED] wrote: i did the event delegation by hand and it's pretty easy. (tbody).click(myHandler); function myHandler(e) {   var e = e || window.event;   var elem = e.target || e.srcElement;   if (elem.nodeName.toLowerCase() == td) {     // do stuff

[jQuery] Re: counter like 1 of 10 for jcarousel

2008-03-31 Thread tetrix
it's like the function here: http://www.designis-fine.com/projects/logos--marks/ On 31 mar, 12:27, tetrix [EMAIL PROTECTED] wrote: hello;  i need to make a function: it should get the length of an array then everytime i click next it should increase its count until the length array ends. the

[jQuery] Re: Chm version of the jQuery api browser

2008-03-31 Thread char101
On Mar 31, 6:43 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: question 1: what jquery version is your API browser based on? Latest? I don't know. It is build from the four xmls found here http://jqueryjs.googlecode.com/svn/trunk/tools/api-browser/ But it does include functions from 1.2.

[jQuery] Re: cluetip on Safari Mac throws error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7

2008-03-31 Thread Karl Swedberg
When I open your page in Firefox, I immediately get the following error message in the Firebug console: An invalid or illegal string was specified code: 12 The Safari error is a little different, I see. I wonder if it might have something to do with the permissions that are set

[jQuery] Re: www.na3.it

2008-03-31 Thread Karl Swedberg
Very nice -- clean and smooth. Congrats, GianCarlo! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 31, 2008, at 4:09 AM, GianCarlo Mingati wrote: Hello, this is a new site i've made for an architect. It uses the jquery.cycle plugin for most of

[jQuery] Re: Fading images 'slow' on mouseover

2008-03-31 Thread Karl Swedberg
Not a problem, Nat. And glad you like the book. :-) If anyone else is following this thread, just wanted to say that my first solution for Nat at learningjquery.com was insufficient. I posted another one yesterday that seems to have done the trick:

[jQuery] Re: Modals - What's everyone using?

2008-03-31 Thread Scott González
Richard's response pretty much covers everything. Two simple options - complete flexibility. If there are any features that you think would make UI Dialog better, just create a ticket or post to the jquery-ui group :-) On Mar 30, 2:12 pm, Shelane [EMAIL PROTECTED] wrote: Scott, can you expand

[jQuery] Re: Plugin pattern

2008-03-31 Thread alexanmtz
Thanks Ariel, Good alternative you suggest, but its really a alternative that is not solve the problem, I would divide to make thing easy and will create another trouble... I´ll gonna try a different manner... very thanks for suggest... On Mar 29, 11:38 am, Ariel Flesler [EMAIL PROTECTED]

[jQuery] Re: Fading image memory leak (what am I doing wrong?)

2008-03-31 Thread John Resig
What version of jQuery are you using? --John On Mar 30, 12:24 am, markie [EMAIL PROTECTED] wrote: Hi,   So I have this script that copies a node, then uses an ajax call to load a new image into the new node. Then once the image is done loading, fades the old image out. After that, it

[jQuery] Re: flexigrid plugin - help for server side script

2008-03-31 Thread mick
hello paulo, I am having numerous problems in implementing the basic flexigrid, Example 3 on http://webplicity.net/flexigrid/ I somehow managed to make the ASP page write the required xml back. The problem now I am facing is with the display, the navigation buttons on the toolbar at the bottom is

[jQuery] Re: Problem width tabs + splitter

2008-03-31 Thread cesar
The demo is in http://elcirculorojo.890m.com/index.html Can you send an example of your code? Cesar. On Mar 27, 9:52 pm, Rav [EMAIL PROTECTED] wrote: Hi I am having the same problem , I am not able to add splitter in tab, is it possible for you to share the code Rav On Mar 7, 7:56 pm,

[jQuery] toolbar buttons do not function

2008-03-31 Thread mick
Hello Folks, I am having numerous problems in implementing the basic jquery flexigrid, Example 3 on http://webplicity.net/flexigrid/ I somehow managed to make the ASP page write the required xml back. The problem now I am facing is with the display, the navigation buttons on the toolbar at the

[jQuery] Deep Extend edits all objects?

2008-03-31 Thread [EMAIL PROTECTED]
This is kind of long, so thank you so much if you read it all. I am building a plugin and running into a problem. Here goes: In my options, I am passing a nested object: $.aPlugin.defaults = { image: { url: myImage.gif, width: 20px,

[jQuery] How do I unsubscribe from googlegroups?

2008-03-31 Thread Peter Bengtsson
I don't want to leave the group but I want to read it online instead. I went to the Google Groups for jquery and changed my preference to No email but I'm still getting them. Any idea anyone? -- Peter Bengtsson, work www.fry-it.com home www.peterbe.com hobby www.issuetrackerproduct.com

[jQuery] Re: jQuery in IE7

2008-03-31 Thread the_woodsman
I'm no expert, and you don't provide any information about the errors in IE. Random guess: $(document).ready( Have you tried quoting document, i.e $('document')? On Mar 30, 7:27 pm, Tolik Piskov [EMAIL PROTECTED] wrote: Hello! I was trying to start learning jQuery, but faced a problem:

[jQuery] Re: Chm version of the jQuery api browser

2008-03-31 Thread Pete Lees
Hi, Charles, question 2: it might be useful to integrate some update logic (a simple indication that a new version is available on the CHM splash page maybe?) A chm is just a compressed HTML pages with table of contents and index. So I don't think it can do such thing :-D. Have a look

[jQuery] Re: How do I unsubscribe from googlegroups?

2008-03-31 Thread Peter Bengtsson
I haven't waiting. But I think I've tried to do it again but didn't bother to dig into it further when I kept getting emails. I'll check with that Help forum. THanks! On 31/03/2008, Richard D. Worth [EMAIL PROTECTED] wrote: Have you given it a day? I've never done it, but perhaps it takes some

[jQuery] jqDock Plugin

2008-03-31 Thread Wizzud
Transform a set of images into a Mac-like Dock menu, horizontal or vertical, with icons that expand on rollover, and optional labels. (Not particularly new, but I needed it.) demo : http://www.wizzud.com/jqDock/ Feedback welcome.

[jQuery] Re: Custom element attributes generated by a plugin

2008-03-31 Thread Ariel Flesler
I'm not an expert on that, but count me in against adding them. Maybe if you include a doctype... :) -- Ariel Flesler http://flesler.blogspot.com On Mar 30, 11:24 am, Eric Martin [EMAIL PROTECTED] wrote: I'm *considering* adding a custom attribute for elements created in a plugin and wanted

[jQuery] Re: jqDock Plugin

2008-03-31 Thread Karl Swedberg
Very nice! Love it. Especially love that you avoided the multiple- hover-effect-queuing problem that so often arises. Great job! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 31, 2008, at 12:54 PM, Wizzud wrote: Transform a set of images

[jQuery] Re: jQuery in IE7

2008-03-31 Thread Josh Nathanson
It should work fine in IE7. Is your script tag closed after your ready call, you don't show that in your example. script type=text/javascript $(document).ready( function() { alert ( test ); }); /script -- make sure this is here -- Josh - Original Message - From:

[jQuery] Re: Problem validate under IE

2008-03-31 Thread David
Please help me. On Mar 31, 11:29 am, David [EMAIL PROTECTED] wrote: http://www.contaflux.ro/gestiune/module/intrari.php I have two problems: 1. This script works good in FF, but it doesn't work in IE6. I have been trying to solve it for 2 day, but i didn't succeed. Please help me. 2. The

[jQuery] Re: jQuery in IE7

2008-03-31 Thread Tolik Piskov
On 31 мар, 19:14, the_woodsman [EMAIL PROTECTED] wrote: I'm no expert, and you don't provide any information about the errors in IE. Sorry, I just figured out that this is not jQuery's problem. There's something with JavaScript in my IE7. It simply doesn't work.

[jQuery] Re: Deep Extend edits all objects?

2008-03-31 Thread [EMAIL PROTECTED]
I think I have found the problem: When I assign $.extend() to a variable, I don't actually expect $.extend() to alter my source data. I expect my variable to contain a copy of the source data with alterations made to it. Am I using the wrong syntax? I would like to assign the results of

[jQuery] Re: Putting data from load() to a variable?

2008-03-31 Thread ajpiano
theoretically something like function updateTimer(object_id) { $.get(checkchanges.php,{object_id:object_id}, function(msg) { $(#timer+object_id).append(msg); setTimeout(updateTimer(+object_id+), 1000); }); } is what you're looking for just carry on execution in the callback.

[jQuery] clueTip width question

2008-03-31 Thread ajobe
I was under the impression that cluetip would dynamially resize based on the content it contained. I am putting an html page with all of the content set into a table in clueTip. The height is great, but the width is much less than the width of the table. Am I wrong thinking that it should size

[jQuery] Re: assigning data from $.getJSON() to a global variable?

2008-03-31 Thread funkadelic
thanks Mike! my code was actually within a JS function that is supposed to return a value i forgot about the A in ajax :) i ended up using $.ajax() to force the ajax request to be synchronous so that it would get the value from the ajax request, but I set the $.ajax() option async to false

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-03-31 Thread ajpiano
STEVE I ride alongside you in this boat of shame. I have the exact same problem. Portlet interface, two styles of instantiating portlets. Long have I suffered this bug to no avail. I have cheesily and not completely solved the problem by storing the jQuery object in another variable and

[jQuery] Jquery Selector even and first child (nested tables striping)

2008-03-31 Thread rsmolkin
Hi, I've ran into a little problem. I'm using the code below to do alternate row striping on a table. $('table.basic tr:even').addClass('even'); The problem is, one of the cells of this table contains another (nested) table. So the tr:even selector is getting messet up, and

[jQuery] clueTip close button moves on hover

2008-03-31 Thread ajobe
In my clueTip window I am having trouble with the close button moving slightly to the right when it is rolled over. It is in the title and I am using a sticky window that closes on mouse out. I cannot figure out what is causing this. Any ideas would be great! Thanks!

[jQuery] Re: clueTip close button moves on hover

2008-03-31 Thread Karl Swedberg
this one sounds like it could be a css problem. are you using text or image for the close? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 31, 2008, at 2:47 PM, ajobe wrote: In my clueTip window I am having trouble with the close button moving

[jQuery] Re: clueTip width question

2008-03-31 Thread Karl Swedberg
Unfortunately, you can't just have the width be auto, because of the order in which the positioning is calculated. If you don't have one set, it defaults to 275px, or something like that. You might want to try setting #cluetip-inner to overflow: auto; in the stylesheet. That might help.

[jQuery] Re: Jquery Selector even and first child (nested tables striping)

2008-03-31 Thread Klaus Hartl
Use the child combinator to select just the children of a certain element. In your case, assuming you have an tbody element: $('table.basic tbody tr:even').addClass('even'); --Klaus On Mar 31, 8:45 pm, rsmolkin [EMAIL PROTECTED] wrote: Hi, I've ran into a little problem.  I'm using the

[jQuery] Re: How can I test my javascript?

2008-03-31 Thread Ariel Flesler
Flexible selectors should be the main solution. Specially the use of ids, they are fast, and don't depend on dom hierarchy. You can also intercept a key function in jquery, probably $.fn.find. (function( $ ){ var find = $.find; $.find = function( selector ){ var elems = find( selector );

[jQuery] Re: How can I test my javascript?

2008-03-31 Thread Josh Nathanson
There is a tool called Selenium that allows you to record a series of clicks around your website, and then play it back to simulate a user session. It only works on localhost and in Firefox (it's a FF extension), but it's quite useful in that environment. http://selenium-ide.openqa.org/

[jQuery] JSeclipse?

2008-03-31 Thread Thomas Hill
Has there been any progress in creating a JQuery library xml file, or whatever is needed for the JSEclipse plugin? Does anyone know of where I could find it? Google only reports old news posts, and I was wondering if anyone has done anything with it since.

[jQuery] Re: Jquery Selector even and first child (nested tables striping)

2008-03-31 Thread rsmolkin
Ok, found a solution if anyone else is searching! $('table.basic tr:nth-child(even)').addClass('even'); -Roman On Mar 31, 2:45 pm, rsmolkin [EMAIL PROTECTED] wrote: Hi, I've ran into a little problem. I'm using the code below to do alternate row striping on a table.

[jQuery] Re: How can I test my javascript?

2008-03-31 Thread Ashley
Depending on your needs I also recommend Selenium; highly (both the IDE and the server for running automated tests). Keep your markup clean and your semantics correct and layout neutral (e.g., sub_nav is far better than left_nav as an Id) and changing your layout may not have any effect, or

[jQuery] Re: clueTip close button moves on hover

2008-03-31 Thread ajobe
image...Here is the css: .cluetip-jtip h3#cluetip-title { margin: 0 0 0px; padding: 0px 0px; font-size: 10px; font-weight: normal; background-color: #CC; color: #333; height:10px; } .cluetip-jtip div#cluetip-close { text-align: right; margin: 0 0px 0px; color: #900; }

[jQuery] Re: cluetips - dynamic data filtering

2008-03-31 Thread SterlingK
No ideas?

[jQuery] Changing the click trigger inside itself is causing undesired results.

2008-03-31 Thread [EMAIL PROTECTED]
I have a button, when clicked this button invokes a function that changes the buttons html, and it's click. The problem is it somehow maintains the old trigger code. Before I put the click functions in their own functions (rather than just adding function(){} to the parameter) it would gain code

[jQuery] Re: clueTip width question

2008-03-31 Thread ajobe
That throws scroll bars on it. Without this the content flows outside of the window. Guess is can't be done? On Mar 31, 3:25 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Unfortunately, you can't just have the width be auto,  because of   the order in which the positioning is calculated. If

[jQuery] Re: cluetips - dynamic data filtering

2008-03-31 Thread SterlingK
By the way - that first line should read, ...THANKS for the hard work...

[jQuery] Changing the click trigger inside itself is causing undesired results.

2008-03-31 Thread [EMAIL PROTECTED]
I have a button, when clicked this button invokes a function that changes the buttons html, and it's click. The problem is it somehow maintains the old trigger code. Before I put the click functions in their own functions (rather than just adding function(){} to the parameter) it would gain code

[jQuery] Re: bind() and thousands of td elements - inline or extrnal?

2008-03-31 Thread Leeoniya
with the Listen plugin i have something like this: $(tbody).listen(click, td, function(e) { $(this).addClass(edit).html(input type='text' /); $(input, $(this)).each(function() {$(this).focus()}); }) is it appropriate to use $(this).addClass instead of $(e.target).addClass inside the

[jQuery] Re: Modals - What's everyone using?

2008-03-31 Thread Shelane
If I try the first I get this error: missing : after property id Line 1 $('#example1').dialog({modal: true, overlay: { background-color: 'gray', opacity: 0.5 } }); On Mar 30, 3:55 pm, Richard D. Worth [EMAIL PROTECTED] wrote: By default the UI Dialog is not modal. You can make it modal be

[jQuery] Re: Modals - What's everyone using?

2008-03-31 Thread Josh Nathanson
I think you will have to put quotes around background-color. -- Josh - Original Message - From: Shelane [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Monday, March 31, 2008 3:09 PM Subject: [jQuery] Re: Modals - What's everyone using? If I try the first I

[jQuery] Re: Custom element attributes generated by a plugin

2008-03-31 Thread Wizzud
I, too, would have to be counted on the 'not in favour' side. Can you not use a class, or $.data, or $.metadata, or some such? On Mar 30, 3:24 pm, Eric Martin [EMAIL PROTECTED] wrote: I'm *considering* adding a custom attribute for elements created in a plugin and wanted to know what the

[jQuery] Re: Changing the click trigger inside itself is causing undesired results.

2008-03-31 Thread Jason Huck
You're not doing anything in your code to remove the original click event. To make it work this way, you'd need to make a single recursive function using .unbind() to remove the first click event, add the second, and then on the second click, remove the second click and call itself again to

[jQuery] Re: Changing the click trigger inside itself is causing undesired results.

2008-03-31 Thread Wizzud
I think you may be under the misconception that an event ('click' in this case) can only have one function bound to it at a time - not true. When you bind a function to an event, it stays bound until removed, and will run whenever the event is triggered. If you bind another function (same or

[jQuery] Is their a way to wait for .animate to finish, before executing something?

2008-03-31 Thread [EMAIL PROTECTED]
code: $(#body).animate({height: 'hide'}, 'fast'); //hide the body, untill get returns... $.get(thehtml, {sid: Math.random()}, function(thepage){ $(#body) .html(thepage) //apply new content...

[jQuery] Re: Chm version of the jQuery api browser

2008-03-31 Thread char101
On Mar 31, 11:34 pm, Pete Lees [EMAIL PROTECTED] wrote: Have a look at the following article for a fairly simple way to alert users when a new version of the .chm file is available. http://www.writersua.com/mixingonlinechm.htm Hi Pete, thanks for the article. That is cool. A simpler way is

[jQuery] Re: Thickbox acting up in IE7 and FireFox Mac

2008-03-31 Thread Allan Branch
There's a new png and the link in the css needs to be adjusted accordingly. On Mar 19, 11:37 pm, dsizemore [EMAIL PROTECTED] wrote: Hi, I'm trying to get Thickbox set up on my site for my login and forgot password forms. Once clicked, these two links will open a Thickbox allowing the user

[jQuery] Re: Problem width tabs + splitter

2008-03-31 Thread Ravisankaran Ganesan
Hi Your demo works great with some javascript error Thanks Rav On Mon, Mar 31, 2008 at 6:36 AM, cesar [EMAIL PROTECTED] wrote: The demo is in http://elcirculorojo.890m.com/index.html Can you send an example of your code? Cesar. On Mar 27, 9:52 pm, Rav [EMAIL PROTECTED] wrote: Hi I am

[jQuery] Updating select content

2008-03-31 Thread Minh
I'm trying to improve the speed of my script which is currently using html() to replace content of a select element. The updateSelectOptions() method take an array and create a string of options to replace the select element. function updateSelectOptions(aOptions, fieldID) {

[jQuery] Re: Ajax/Safari 3/SSL

2008-03-31 Thread Jeffrey Kretz
You aren't by chance doing a cross-domain ajax call when you do it by SSL are you? In terms of debugging options, you can use Firebug Lite (and sprinkle your code with lots of console.log() statements). http://www.getfirebug.com/lite.html Also, Drosera is a debugger with the WebKit project

[jQuery] Re: Ajax/Safari 3/SSL

2008-03-31 Thread Josh Nathanson
Nope, not cross-domain. I'm using a relative url so that shouldn't be an issue. It works fine in all other browsers, SSL or not, though I haven't tried Safari 2 yet. I'll give Firebug lite a go and see if I can nail down where it's failing. -- Josh - Original Message - From:

[jQuery] Re: Ajax/Safari 3/SSL

2008-03-31 Thread Jeffrey Kretz
Just for poops and giggles, rather than using a relative url, try giving the full absolute path (https://blabla) in your ajax call. This is only a hunch, it may have no effect. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson

[jQuery] JSON $Get.Json Silently Failing

2008-03-31 Thread Mike Flair
hello, i have rather frustrating problem with $get.Json silently failing; i have a data set that return; but many that fail. after i try and serialize the data and send it back to the client; it never return and the function $get.Json fails to return if i place the JSON serialized objects in an

[jQuery] Need Special Menu Plugin

2008-03-31 Thread Roberto
I need a special menu plugin for admin pages. The problem is that my clients hate frames and iframes, and on slow connections, admin pages for websites that I build need to always show menus and not have to redraw them each time. Previously I was using iframes to fix that. I was putting the menus

[jQuery] get input value not working.....

2008-03-31 Thread andrewg
Typically (so I've thought), to get the current value of a textbox (input), I would simply use $(#inputid).val(); However, I'm experiencing the initial value being returned instead of a new, typed- in value. Have I just been staring at this too long? I was using jquery 1.2.3 and backed off to 1.2

[jQuery] [newb] Creating a list of X quotes randomly

2008-03-31 Thread ab5tract
Problem: I am creating a teaser page for a site that is coming soon. We have a list of 20 sentences that describe the site. We want to select 5 of those, at random and without redundancy, and display them in a div. The display part seems easy enough, and should look something like this:

[jQuery] unresponsive script error on long page with many clueTips

2008-03-31 Thread az
Hello, I have a dynamically generated page that can be long or short. Everything is fine when it's short, but when it gets to be *very* long, it gives unresponsive script errors. I believe this is because each entry on the page contains 3 clueTip links. If I have a thousand entries, that's

[jQuery] Re: Creating a list of X quotes randomly

2008-03-31 Thread RobG
On Apr 1, 9:36 am, ab5tract [EMAIL PROTECTED] wrote: Problem: I am creating a teaser page for a site that is coming soon. We have a list of 20 sentences that describe the site. We want to select 5 of those, at random and without redundancy, and display them in a div. The display part seems