[jQuery] Re: Autocomplete and JSON

2008-04-10 Thread dineshv
Actually, you don't need the simplejson at the server. This works: def GET(self): result = for item in data: print item On Apr 9, 1:36 pm, dineshv [EMAIL PROTECTED] wrote: Hi Ashley I'll work through your code but sending each item one at a time from

[jQuery] Re: jCarousel problems in IE6 and 7

2008-04-10 Thread Jan Sorgalla
Hi, can you please post a link the page. Jan On 9 Apr., 17:52, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm usingjCarouselto scroll a list of images (linked to pages) horizontally. It's a simple setup - the carousel is inside a div that has a background colour set in another stylesheet,

[jQuery] Custom rich text editor with some protected contents

2008-04-10 Thread Olive
Hi, First, please let me describe my project: I need to implement a simple rich text editor (only one paragraph with no carriage return and underlined, superscript subscript period). For that I could borrow some idea from

[jQuery] blockUI

2008-04-10 Thread makkina
Hi all, I have to implement this scenario: in a web page all the stuff contained in the web page must be blocked and only the images should be visible. How do I create an overlay with jquery having glossy all the images and opaque the rest? thanks makkina

[jQuery] jqModal and Submit in existing window

2008-04-10 Thread Andrea-T
Hello, I have a page which opens a jqModal window. This contains a new php-page via the AJAX-Request of jqModal (actually the basic example no 2 on page http://dev.iceburg.net/jquery/jqModal/) Everything works fine and the window shows the correct content. In this content I have a form with

[jQuery] copying the menu from radiotimes.com to jquery

2008-04-10 Thread ontangent
Hi I want to do something like http://www.radiotimes.com/ but in jquery not flash, does anyone know if there is a tutorial on this sort of thing somewhere? ta t

[jQuery] Re: Custom rich text editor with some protected contents

2008-04-10 Thread Frederic
Hello Olivier, To protect content you can have use blockUI plugin (http:// www.malsup.com/jquery/block/#element) on specific elements in your edited content. Another editor based on Jquery : http://projects.bundleweb.com.ar/jWYSIWYG/ regards. Frederic On 10 avr, 10:55, Olive [EMAIL PROTECTED]

[jQuery] Display ajax result in 2 divs

2008-04-10 Thread Web Specialist
Hi all. I have a response from Ajax call and I'll want to display that in 2 divs(header and footer in my form). Now I'm using this terrible script: script function hideResponse() { $('#divResposta').hide(); $('#divResposta2').hide(); }

[jQuery] Re: HTML Partial Element Does Not Exist?!

2008-04-10 Thread OhNoMrBill
That is a bit cryptic, what do you mean by completed? The AJAX call does successfully fire the call back for success. It is after this call back completes, that a scrubber function is called on the newly arrived div. Which, we are told is undefined. So, the question is why would a div that

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread upandhigh
why not to put both divs into one DIV container? div id=update_id div id=#divResponse/div div id=#divResponse2/div /div $('#update_id div').html(test).show(); On Apr 10, 3:16 pm, Web Specialist [EMAIL PROTECTED] wrote: Hi all. I have a response from Ajax call and I'll want to

[jQuery] Using Jquery instance in an Iframe

2008-04-10 Thread Frederic
Hello, To avoid the loading of multiple Jquery in my application using Iframe, I would know if anybody has succeeded in using a single Jquery instance (in the same domain name). myexample.html html headscript type=text/javascript src=jquery.js/script/head body div

[jQuery] Re: blockUI

2008-04-10 Thread upandhigh
your images must have bigger z-index, to be on the top of blocking layer and other content On Apr 10, 9:57 am, makkina [EMAIL PROTECTED] wrote: Hi all, I have to implement this scenario: in a web page all the stuff contained in the web page must be blocked and only the images should be

[jQuery] Re: inner frames

2008-04-10 Thread upandhigh
it's not real. and it doesn't matter if you have this iframe from the start or you will add it later with js to your dom. you cannot change anything on other sites, even if this site is opening in iframe what is on your page, and the reason why is so clean like sunny day - because you could

[jQuery] Re: blockUI

2008-04-10 Thread Mike Alsup
I have to implement this scenario: in a web page all the stuff contained in the web page must be blocked and only the images should be visible. How do I create an overlay with jquery having glossy all the images and opaque the rest? Are you looking for something like Thickbox?

[jQuery] Re: Custom rich text editor with some protected contents

2008-04-10 Thread Scott González
Off the top of my head, I can think of cut/delete from the context menu. Also, a user could select the protected data and paste over it. On Apr 10, 8:26 am, Olive [EMAIL PROTECTED] wrote: Frederic, Thank you for your help and pointers. I doubt that blockUI will help in preventing an

[jQuery] [Validation]How to make two field check output one message?

2008-04-10 Thread Jacky See
Hi, Some question on the config of validation plugins. Suppose there are #fromDate and #toDate fields (using ui.datepicker). I have added these custom rules jQuery.validator.addMethod(afterFromDate ,function(value, element, targetId){ var

[jQuery] Tabs Validation

2008-04-10 Thread MarcelloP
Hi all! I need a little advice; in a page I have a form with a tabs with 3 tab- pages, all with input elements and all required; in this form I also have enabled the splendid Validation plugin. My concern is this: if a user fill only the inputs of the first tab- page and leave blank the others,

[jQuery] Re: Using Jquery instance in an Iframe

2008-04-10 Thread Jeffrey Kretz
I've successfully used jquery by referring to the parent frame. Instead of this, try document alert($(#mycontent, document).html()); JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Frederic Sent: Thursday, April 10, 2008 5:52 AM To: jQuery

[jQuery] Re: Using Jquery instance in an Iframe

2008-04-10 Thread Jake McGraw
I would suggest using the frameready plugin, but it appears the authors site was been removed from the internet. You can download it from here: http://jakemcgraw.com/javascript/jquery.frameready.js Usage instructions are included in the script comments. - jake On Thu, Apr 10, 2008 at 12:25

[jQuery] Ajax .load() with Report Pagination

2008-04-10 Thread tfat
Hi, Really hoping someone can assist as if it's not possible then I will probably have to pull out my jQuery code. Basically using the following jQuery Ajax call, i.e: $ (#links).load(/Main_Page #p-Getting-Started li); from the following link http://docs.jquery.com/Ajax/load#urldatacallback.

[jQuery] Strange problem of $.post()

2008-04-10 Thread Huisi Wang
Hi all, I'm a newbie of jQuery. I've tried to send post request by $.post(), and used to succeed. When I try to use $.post() this time, I get a strange problem. I'm trying to send request as below: $.post('http://vhost/deng/commitment/save', {num:1, name:abc}, function(xml) { //something for

[jQuery] Tabs conflict with in-page anchors?

2008-04-10 Thread owen
I've got a page that uses tabs (v.3), and also has a series of in-page anchors. I'd like to be able to link from other pages to those in-page anchors, but that doesn't seem to work. The page doesn't jump to the anchor. I'm assuming this is because it's conflicting with the tabs? Interestingly, I

[jQuery] $. get xml on IE, does not work....

2008-04-10 Thread Totha
Hello guys, Please help. Belove works well in Firefox an Opera but not in IE. In IE nothing is returned... Client side: - appends result to div id=reader $.get('page/dbRead.php', function(xml) { $('#reader').append( $(xml).find('content') ); }); Server side: - script produces very simple xml

[jQuery] Re: Event Binding Problem

2008-04-10 Thread mike mike
Many thanks for the help, *Ariel*, Yes I have read the FAQ and now followed all the links. It's starting to make some sense, slowly, but I can't relate the examples to my code (I really am a newb LOL). I'm on a learning curve here ;-)) *Wizzud*, Many thanks for the great explanation and yep, I

[jQuery] jCarousel's wrap: 'both' doesn't seem to work

2008-04-10 Thread sprocketeer
Perhaps I'm misunderstanding what this is supposed to do, but when I have wrap set to both I was expecting that both the previous and next buttons would become inactive (when you're at either the beginning or end of the list). Is this not what wrap: 'both' is supposed to do? If not, is there a

[jQuery] Re: Using Jquery instance in an Iframe

2008-04-10 Thread rolfsf
There was a plugin that someone developed for this sort of situation, but I'm not sure it's still being supported/updated. Look for a jQuery plugin called FrameReady rolfsf On Apr 10, 5:51 am, Frederic [EMAIL PROTECTED] wrote: Hello, To avoid the loading of multiple Jquery in my application

[jQuery] Re: markItUp! input for Jeditable

2008-04-10 Thread Jay Salvat
Thanks to you Mika ! All feedback and bug reports are welcome. Not a bug but a Css conflict. In the demo, buttons are underlined as your links. Jay. www.jaysalvat.com On 8 avr, 12:58, Mika Tuupola [EMAIL PROTECTED] wrote: Finally had some extra time so I glued markItUp! and Jeditable

[jQuery] IE doesn't like .css(stuff)?

2008-04-10 Thread Leanan
Afternoon ladies and gents. I'm experiencing a weird issue. I have a div that contains popup information for when users hover over specific items on the page. Everything looks beautiful in firefox, but IE takes a dump (go figure). I was wondering if anyone might have an idea why? Here's what

[jQuery] Re: jQuery Image Slideshow likd jdGallery?

2008-04-10 Thread mmcglynn
I would like something like this as well. The Interface plugin is not very good. On Apr 7, 3:11 pm, dsizemore [EMAIL PROTECTED] wrote: Does anyone know if there is a jQuery imageslideshowplugin that will basically duplicate the functionality of

[jQuery] Re: Event Binding Problem

2008-04-10 Thread Ariel Flesler
Hi Mike I *think* the answer is in the FAQ snippet That snippet is the base for Event delegation. That would the second approach, I think you've been following the first (re-binding). So, you take one option, or the other, not both. If you stick to re- binding, the technique of a class you

[jQuery] How to get a 'fresh' ui datepicker date?

2008-04-10 Thread Jacky See
Dear all, This is about the ui datepicker. I have an input field with a datepicker, using image as trigger. The field is not read only, user are allowed to input by keyboard. The problem is that when user type some invalid input like '33' the $('#input').datepicker('getdate'), will still

[jQuery] Re: IE doesn't like .css(stuff)?

2008-04-10 Thread Leanan
Fixed it.

[jQuery] Re: HTML Partial Element Does Not Exist?!

2008-04-10 Thread OhNoMrBill
Bouncing this one up. Getting kind of urgent. Can anyone tell me what the requirements are for accessing an element delivered in an HTML partial? All I am trying to do is attach an onclick to an href...after it comes down from the server. On Apr 10, 6:47 am, OhNoMrBill [EMAIL PROTECTED] wrote:

[jQuery] Re: JQuery Selector

2008-04-10 Thread Wizzud
Ah, sorry. I was looking at it wrt the literal elements, not as the representation of an external structure. Apologies. On Apr 10, 3:52 am, JB [EMAIL PROTECTED] wrote: A section is just and idea, here it is represented by 'sectionstart' divs and 'sectionend' divs, everything within a section

[jQuery] Re: Event Binding Problem

2008-04-10 Thread Wizzud
Turn it round slightly. Instead of ... $(#column).append(html).find('.portHeader').bind('click',setQRX); try... $(html).appendTo('#column').find('.portHeader').bind('click',setQRX); This way, when you get to the find(), the context is the newly appended html, whereas previously is was

[jQuery] Re: HTML Partial Element Does Not Exist?!

2008-04-10 Thread OhNoMrBill
Not stupid at all...if any one is doing that kind of question, sure it is me :) OK, so the code actually does this: 1) AJAX Request to server (get) 2) Success: ccontent is placed into div id=someid/div 3) After content is is div, a scrubber runs and replaces links. !-- this works 4) Last a

[jQuery] Re: jQuery moreSelectors :modified - code stopped working

2008-04-10 Thread skube
Has this issue been resolved? On Mar 27, 8:31 am, Stuart [EMAIL PROTECTED] wrote: One other bit of wierdness is that using unsaved = $ (*:modified).size(); causes firebug to ignore breakpoints and the debug directive. If I use unsaved = $(FORM/*:modified) firebug works as expected. There are

[jQuery] Re: How to get a 'fresh' ui datepicker date?

2008-04-10 Thread Jacky See
I have found some wicked way to do it. This is the code where I'm writing a plugin to accept date range pair and auto-init them. //Assuming from/to date have same prefix id (e.g. #eventFromDate, #eventToDate) $.fn.datepickerPair = function(options){ return this.datepicker(

[jQuery] How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick Faircloth
Hi, all... I'm a bit confused about how to get variables from jQuery that I can use in my ColdFusion code. In typical CF pagination, I use startrow and maxrows variables to limit the query output. How would I get these variables from the jQuery? I just can't piece together what's happening.

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Josh Nathanson
Rick - I don't know how the pagination plugin that you're using works, but there may be some sort of before event that you can use to ajax some variables to your CF page. Your CF template would take these variables and use them to set the startrow and maxrow values and then send back the

[jQuery] Re: Ajax? issue in IE 7

2008-04-10 Thread David D
I found the problem. $('a.thickbox').click(function(){ $(*).css(padding,0); $(*).css(margin,0); }); I hadn't pasted that in the mail because I didn't think of the missing quotes around * causing a problem. I'm pretty sure I just

[jQuery] Re: Event Binding Problem

2008-04-10 Thread mike mike
Hi Ariel, Many thanks again for replying! I think I am confussing the two approaches here ;-) I think I need to go down the delegation method as I may be adding a load of divs (the final app will be used to track Amateur Radio nets, each one will need to have comment data, signal data etc which

[jQuery] Validate plugn - Error does not go away!

2008-04-10 Thread asle
Hello, I am using jQuery Validation Plugin. The demos work fine. But when I am using a new form I get correct errors. When I correct the invalid input the error does not go away until I click the submit button. Here is the code for a form with id=finansform: var validator =

[jQuery] Re: Event Binding Problem

2008-04-10 Thread Ariel Flesler
Can't help you out with this, I've never read any.. Cheers -- Ariel Flesler http://flesler.blogspot.com On 10 abr, 14:58, mike mike [EMAIL PROTECTED] wrote: Hi Ariel, Many thanks again for replying! I think I am confussing the two approaches here ;-)  I think I need to go down the

[jQuery] [validate] 1.2.1 backward compatibility break

2008-04-10 Thread Bryce Lohr
Hi Jörn, I believe I've discovered a backward compatibility break when upgrading from 1.1.2 to 1.2.1 of the Validate plugin. After a few days of sorting through the problems I've had, I think I've narrowed down issue down to the fact that the current version assumes in several places that the

[jQuery] basic understanding of jquery and XMLresponse

2008-04-10 Thread Radek Šťastný
Hello I trying to start with jQuery, I have a working Ajax solution in pure javascript from before and I'd like to benefit from jquery in this way: the server returns XML in form like Content-Type: text/xml ?xml version=1.0 encoding=utf-8? result parts

[jQuery] Re: Validate plugn - Error does not go away!

2008-04-10 Thread Jörn Zaefferer
asle schrieb: Hello, I am using jQuery Validation Plugin. The demos work fine. But when I am using a new form I get correct errors. When I correct the invalid input the error does not go away until I click the submit button. A testpage would help debugging this. Jörn

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick
Thanks for the reply, Josh... I think the part that I'm not understanding is the dump the whole query to the client and then the plugin takes care of the pagination. It also sounds like a memory and/or processor intensive way to get 20 records per page. If I have 10,000 records, I guess I

[jQuery] Not Receiving Mail...

2008-04-10 Thread Rick
Anyone else having trouble receiving email? I can read my posts online, but I'm not getting mail in Outlook or on my webmail site. Rick

[jQuery] Re: Testing...not receiving mail...

2008-04-10 Thread Aaron Heimlich
On Thu, Apr 10, 2008 at 3:23 PM, [EMAIL PROTECTED] wrote: This is just a test... had this been an actual... emergency, the Attention Signal you just heard would have been followed by official information, news or instructions. -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Josh Nathanson
Rick, if you have 10,000 records, I would say to not dump them all into the client. My suggestion would be to set everything up as if you were doing the pagination on the server using CF, and then change your pagination links so that they are intercepted, and used to do an ajax call to your

[jQuery] Re: [treeview] Drag and Drop support

2008-04-10 Thread Jörn Zaefferer
xwisdom schrieb: Hello, It would be nice if the treeview had drag drop node sorting. It would also be nice to have a node showing that the tree is loading from the server. There is some experimental code for adding and removing nodes available, a demo is here:

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick
Thanks, Josh... I'll work on that route. Rick On Apr 10, 4:48 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Rick, if you have 10,000 records, I would say to not dump them all into the client. My suggestion would be to set everything up as if you were doing the pagination on the server using

[jQuery] Cycle plugin, start from last entry in container, rather than first

2008-04-10 Thread Andy Matthews
Does anyone know if this is possible? div id=cycle pmsg 5/p pmsg 4/p pmsg 3/p pmsg 2/p pmsg 1/p /div Assuming that I have the above code, is it possible to force msg 1 to be displayed rather than msg 5? Andy Matthews Senior

[jQuery] Re: Cycle plugin, start from last entry in container, rather than first

2008-04-10 Thread Mike Alsup
Does anyone know if this is possible? div id=cycle pmsg 5/p pmsg 4/p pmsg 3/p pmsg 2/p pmsg 1/p /div Assuming that I have the above code, is it possible to force msg 1 to be displayed rather than msg 5? Andy Matthews

[jQuery] Re: Ajax - synchronous ajax call timeout

2008-04-10 Thread steve_f
Anybody?? On Apr 9, 10:10 pm, steve_f [EMAIL PROTECTED] wrote: Has anybody implemented a synchronous ajax call with a timeout. I cannot get the timeout to fire, instead the ui just locks up, I cannot really have this in a live environment, it would really hack a user off!!! I am trying to

[jQuery] Re: Ajax? issue in IE 7

2008-04-10 Thread Hamish Campbell
Ah, hate it when that happens. By the way, are you using Firebug for Firefox? That would help you find this sort of issue a lot quicker. On Apr 11, 6:16 am, David D [EMAIL PROTECTED] wrote: I found the problem. $('a.thickbox').click(function(){                         $(*).css(padding,0);  

[jQuery] Multifile plugin IE problem

2008-04-10 Thread Stinkbug
I'm having a problem with the multifile plugin for jquery in Internet Explorer. My HTML looks like this. div id=fileupload h3File Upload/h3 divinput type=file name=data[file][] class=multi //div pinput type=submit class=button

[jQuery] Re: Validate plugn - Error does not go away!

2008-04-10 Thread asle
Here is a test page: http://fjklima.no/teknisk/validate.html /asle

[jQuery] tablesorter- click function not working on next page

2008-04-10 Thread jseg
I'm using the tablesorter plugin and having a tough time trying to figure out why my click function does not work on the the next/second page when using the pager plugin. $(document).ready(function() { $(#myTable).tablesorter({widgets: ['zebra']}).tablesorterPager({container:

[jQuery] jCarousel scroller

2008-04-10 Thread tic2000
I want to create a scroller for jCarousel. I made something similar with a previous version of jCarousel (you can see what exactly I want to achieve at www.renmenbi.com. The fact is that I'm not at all familiar with JavaScript nor jQuery and I can't do the scroller this time. I tried to use the

[jQuery] Validate plugin 1.2.1 backward compatibility break

2008-04-10 Thread Bryce Lohr
**Apologies for the repost; had to correct the subject line. Anyone know why text in square brackets is removed when posting via Google Group's web form? Hi Jörn, I believe I've discovered a backward compatibility break when upgrading from 1.1.2 to 1.2.1 of the Validate plugin. After a few

[jQuery] tablesorter, tr highlight

2008-04-10 Thread jseg
I'm using the tablesorter plugin and having a tough time trying to figure out why my click function does not work on the the second page when using the pager plugin. $(document).ready(function() { $(#myTable).tablesorter({widgets: ['zebra']}).tablesorterPager({container:

[jQuery] Re: Validate plugin 1.2.1 backward compatibility break

2008-04-10 Thread Jörn Zaefferer
Bryce Lohr schrieb: [...] If you have any suggestions, or alternate strategies, I'd be quite grateful. Also, if solved, would you consider adding the patch back to the main distributed version? The added flexibility should be useful beyond just my case. You are right that the plugin broke

[jQuery] Find a exact location in the dom, then move down from that location to another element

2008-04-10 Thread sleepwalker
Is there a way in jquery to find your exact location in the dom and then move down from that location to another element? For example can I get the value of a input[text].someClass after changing it and write that change only to the next td.someOtherClass in the dom without using an id?

[jQuery] Re: Find a exact location in the dom, then move down from that location to another element

2008-04-10 Thread Erik Beeson
I'm not quite sure what you're asking for, but it sounds like you might want to check out the docs on selecting and traversing: http://docs.jquery.com/Selectors http://docs.jquery.com/Traversing Hope it helps. --Erik On 4/10/08, sleepwalker [EMAIL PROTECTED] wrote: Is there a way in jquery

[jQuery] Re: HTML Partial Element Does Not Exist?!

2008-04-10 Thread Wizzud
Well, without the code or a web-accessible page exhibiting the problem, it's down to you now. Use Firefox, with Firebug, and the DOM Inspector Replace the alert with var assignments, eg var za = document.getElementById('MyDiv'); var zb = $('#MyDiv'); var zc = zb.html(); var brk = 0;//set

[jQuery] Jquery and SSL

2008-04-10 Thread Paul
Does anybody know if you have to do anything special to allow for AJAX (via jquery) over SSL?

[jQuery] Re: Jquery and SSL

2008-04-10 Thread Jeffrey Kretz
I've successfully run ajax calls with jquery over SSL. Are you on an https page making an http ajax call or vice-versa? I'm not sure if this would make a difference (never tried). JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent:

[jQuery] Re: Jquery and SSL

2008-04-10 Thread Josh Nathanson
I have found that Ajax/jQuery/SSL doesn't work in Safari 3 (didn't test 2). I spent a couple of days trying to track down the issue and then gave up, after finding very little information available. So you might need to do a little browser sniffing and make sure that if they're using Safari,

[jQuery] Re: Find a exact location in the dom, then move down from that location to another element

2008-04-10 Thread Andy Chambers
On Apr 10, 11:24 pm, sleepwalker [EMAIL PROTECTED] wrote: Is there a way in jquery to find your exact location in the dom and then move down from that location to another element? For example can I get the value of a input[text].someClass after changing it and write that change only to the

[jQuery] Popup window

2008-04-10 Thread Paul Collins
Hi all, I have been searching for some code to create a popup using JQuery. Surprisingly, I am having a hard time. I want to create one where you can specify size and not have the standard search bar, etc. Would appreciate any help. Cheers Paul

[jQuery] Re: Not Receiving Mail...

2008-04-10 Thread Rick
I've unsubscribed and re-subscribed... let's see if I can get some mail! On Apr 10, 4:27 pm, Rick [EMAIL PROTECTED] wrote: Anyone else having trouble receiving email? I can read my posts online, but I'm not getting mail in Outlook or on my webmail site. Rick

[jQuery] Re: Ajax - synchronous ajax call timeout

2008-04-10 Thread Hamish Campbell
Could you post your code? Looking at the source (1.2.3) it appears that timeouts are not set for syncronous calls. I'm not sure if it's even possible - the XMLHttpRequest doesn't appear to have a timeout method. The best solution would probably be to not use syncronous requests at all. You'd

[jQuery] Re: Popup window

2008-04-10 Thread Josh Nathanson
Hey Paul, There isn't really any jQuery code that helps with this, but I've got a little plugin jqURL that can make it a bit easier: http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html It has a function loc so if you want to popup a window you can do this: $.jqURL(myfile.html,

[jQuery] Re: Jquery and SSL

2008-04-10 Thread Chris Scott
On Apr 10, 2008, at 4:32 PM, Josh Nathanson wrote: I have found that Ajax/jQuery/SSL doesn't work in Safari 3 (didn't test 2). I spent a couple of days trying to track down the issue and then gave up, after finding very little information available. So you might need to do a little

[jQuery] Re: Jquery and SSL

2008-04-10 Thread Josh Nathanson
FWIW, I can confirm that getJSON() works fine in Safari 3.1 over HTTPS. I'm using it to call the AIM presence API w/no problems. Hmm...I have code that works flawlessly for me on all browsers, plus Safari non-SSL, and fails only on Safari over SSL. Something weird is going on - I think I

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread Web Specialist
Thanks upandhigh! Works like a charm with a class. Cheers Marco Antonio On Thu, Apr 10, 2008 at 9:48 AM, upandhigh [EMAIL PROTECTED] wrote: but better to put them into on class div class='update_em'/div div class='update_em'/div $('.update_em').html(data.saida).show(); then you don't

[jQuery] Star Rating Plugin v2.2: Problem disabling cancel button

2008-04-10 Thread DragonI
Hi, I'm having a problem disabling the cancel button. Maybe it's just me ;) code says: //required: false, // disables the 'cancel' button so user can only select one of the specified values Here's what I tried: form id=form1 input class=star {required:false} type=radio name=test-1-

[jQuery] Re: Not Receiving Mail...

2008-04-10 Thread Rick
Anyone have any ideas about why I'm not receiving jQuery email through my webmail or in Outlook? All my other mail is coming through fine, but not jQuery. I unsubscribed and re-subscribed, but that didn't help. I need my jQuery! It's so lonely out here! Rick On Apr 10, 7:28 pm, Rick [EMAIL

[jQuery] Edit-In-Place with Form plugin

2008-04-10 Thread Chris
I have a page that uses the jquery form plugin (http://www.malsup.com/ jquery/form/) to dynamically submit the form and then display the submitted form on the same page. I use the edit-in-place pluging developed by (http://15daysofjquery.com/edit-in-place-with-ajax-using-

[jQuery] jquery cycle plugin counter

2008-04-10 Thread rosco
jquery cycle plugin counter - http://www.malsup.com/jquery/cycle/int2.html The forward and back demo above provides a way to navagate the images, has anyone found a way of counting the number of cycles. ie 1 or 5 It would display next to the forward and back buttons. see below. prev | Next ---

[jQuery] Re: Ajax - synchronous ajax call timeout

2008-04-10 Thread Hamish Campbell
Err, this line: Try the jQuery Development group - it sounds like a bug. Should read: Try the jQuery Development group, they might be able to explain why it does/doesn't work. I'm fairly sure that you can't script a timeout for syncronous though. On Apr 11, 11:35 am, Hamish Campbell [EMAIL

[jQuery] Re: Ajax .load() with Report Pagination

2008-04-10 Thread tfat
Can anyone pls assist. Thanks. On Apr 11, 1:06 am, tfat [EMAIL PROTECTED] wrote: Hi, Really hoping someone can assist as if it's not possible then I will probably have to pull out my jQuery code. Basically using the following jQuery Ajax call, i.e: $ (#links).load(/Main_Page

[jQuery] Re: jCarousel scroller

2008-04-10 Thread tic2000
After hours of trying I managed to do it. The code that does it is: code var self = this; // Generates the scroller screens = this.options.size / this.options.scroll; screens = (Math.round(screens)

[jQuery] Re: Popup window

2008-04-10 Thread Hamish Campbell
Have you considered using the jQuery UI Dialog plugin? http://docs.jquery.com/UI/Dialog On Apr 11, 11:50 am, Josh Nathanson [EMAIL PROTECTED] wrote: Hey Paul, There isn't really any jQuery code that helps with this, but I've got a little plugin jqURL that can make it a bit easier:

[jQuery] Re: Popup window

2008-04-10 Thread Guy Fraser
Josh Nathanson wrote: Hey Paul, There isn't really any jQuery code that helps with this, but I've got a little plugin jqURL that can make it a bit easier: http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html It has a function loc so if you want to popup a window you can do this:

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread Hamish Campbell
Why don't you let jQuery handle the AJAX as well? The . in your email probably contains some interesting code if you've created the call yourself: $.get('someurl.php', data, function(response) { $('.update_em').html(response).show(); }); http://docs.jquery.com/Ajax Ciao, Hamish On

[jQuery] this ?

2008-04-10 Thread Jeff
'scuse me for the noob question here... i have statements like this: $(.highlight).removeClass; $(this:even).addClass(shaded); And I don't think I'm using this or :even correctly; it doesn't work =) Googling has turned up some different ways that the this keyword is used, and I'm not sure

[jQuery] http://docs.jquery.com/ html rendering problem

2008-04-10 Thread bazzzman
Hi ^___^ When reading docs under some browsers (ie6/opera 9.5 beta, and may be some others) I see tiresome space under sections name. Check example: http://farpost.ru/company/misc/jdoc_bug.png (12kb). Having played with html validator I notice what you output invalid html: line 149 column 5 -

[jQuery] Re: Problem with DOM manipulation in IE

2008-04-10 Thread Karl Swedberg
Hi Jon, Try inserting a complete DOM element rather than a partial. $(li/li) instead of $(li) Also, you're missing quotes around the span . Should be: $(span/span) instead of $(span) Also, this is probably breaking, too: .html(item.text) Not sure what item.text is. did you mean

[jQuery] Re: this ?

2008-04-10 Thread Jeffrey Kretz
You could do this: $('.highlight').removeClass('highlight').filter(':even').addClass('shaded'); The this keyword is useful only inside javascript code (it won't work in a selector). JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff