[jQuery] Re: Edit-In-Place with Form plugin

2008-04-10 Thread Mika Tuupola
On Apr 11, 2008, at 3:05 AM, Chris wrote: My problem is that I cannot edit in place the items submitted with the form plugin without refreshing the page. http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F -- Mika Tuupola http://www.appel

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

[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. $("") instead of $("") Also, you're missing quotes around the . Should be: $("") instead of $() Also, this is probably breaking, too: .html(item.text) Not sure what item.text is. did you mean .html(item.text()) ? Hope t

[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] "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

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

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

[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: jCarousel scroller

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

[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: 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] 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] 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-javascript-librar

[jQuery] Re: Popup window

2008-04-10 Thread Paul Collins
Thanks for getting back so fast Josh, that'll do the trick. Suprising that there isn't much JQuery code for this. Maybe it's too easy! Thanks again for your help. Paul On 11/04/2008, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > Hey Paul, > > There isn't really any jQuery code that helps with

[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] 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: Also tried: $(function(){ $ ('[EMAIL PROTEC

[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 > > > > > $('.update_em').html(data.saida).show(); > > then you don't need container + you can put them into s

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

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

[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: Event Binding Problem

2008-04-10 Thread mike mike
Got it licked, many many thanks for your help Ariel and Wizzud ;) On 10/04/2008, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > > Can't help you out with this, I've never read any.. > > Cheers > > > On 10 abr, 14:58, "mike mike" <[EMAIL PROTECTED]> wrote: > > Hi Ariel, > > > > Many thanks again for

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

[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] 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: 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 t

[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: 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: T

[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: 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] 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 jq

[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: 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 backwa

[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: $("#page

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

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

[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: $("#pa

[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. File Upload I can select multiple files, but when I try to upload them it only uploads the first file I selected. From l

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

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

[jQuery] Re: [validate] 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 backwards

[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? > > > msg 5 > > msg 4 > > msg 3 > > msg 2 > > msg 1 > > > Assuming that I have the above code, is it possible to force msg 1 to be > displayed rather than msg 5? > > > > Andy Matthews > Senior ColdF

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

2008-04-10 Thread Jörn Zaefferer
Jacky See schrieb: 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 [...] It will output two messages of 'Please input correct date range'. How can I make it only ouput single one? I'

[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? msg 5 msg 4 msg 3 msg 2 msg 1 Assuming that I have the above code, is it possible to force msg 1 to be displayed rather than msg 5? Andy Matthews Senior ColdFusion Developer Office: 615.62

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

[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: http://dev.jquery.com/view/

[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: 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] http://aheim

[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] Testing...not receiving mail...

2008-04-10 Thread rick
This is just a test... had this been an actual...

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

[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] 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 status in readable form jQuery("#parts").find("ul").prepend("data time variables")

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

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

[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 = $("#finansform").

[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: 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 r

[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. B

[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( $.extend({

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

[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 3) After content is is div, a scrubber runs and replaces links.

[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 #colum

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

2008-04-10 Thread Wizzud
Um, I realise this is probably a stupid question but has the named DIV actually been added into the DOM at the time you do the jQuery lookup on it? (I know you've said that it displays on the page, but you don't show what is actually being done to it to get it there) On Apr 10, 6:41 pm, OhNoMrBil

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

[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: IE doesn't like .css(stuff)?

2008-04-10 Thread Leanan
Fixed it.

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

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

[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 > jdGallery:http://smoothgallery.jondesign.ne

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

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

[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] 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 way

[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] $. 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 $.get('page/dbRead.php', function(xml) { $('#reader').append( $(xml).find('content') ); }); Server side: - script produces very simple xml response

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

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

[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] 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 PM

[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: jQ

[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, he

[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){ va

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

2008-04-10 Thread Olive
On 10 avr, 16:11, Scott González <[EMAIL PROTECTED]> wrote: > 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. Good points Scott, thanks ! Then I am wondering if there a mean to disable the context menus (

[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] 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? htt

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread upandhigh
but better to put them into on class $('.update_em').html(data.saida).show(); then you don't need container + you can put them into separate parts on the page 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 disp

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

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

[jQuery] Loading a page with javascript via ajax

2008-04-10 Thread eyal
Hello everybody! How are you doing? I have a very simple question: let's say i want to load a new page into a div via ajax and that page is contains some javascript and css. Should I write the page i'm loading into a div like that (just like a regular page): Hello! I am the new con

[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 Hello world! myiframe.html var $ = window.parent

[jQuery] Re: Display ajax result in 2 divs

2008-04-10 Thread upandhigh
why not to put both divs into one DIV container? $('#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 display that in 2 > divs(header and footer in my form). Now I'm u

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

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

2008-04-10 Thread Olive
Frederic, Thank you for your help and pointers. I doubt that blockUI will help in preventing an element to be deleted from an editable area. After further thoughts, I will try to prevent img deletion only (maybe I will convert any special XML element to an image on the server side before servi

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

[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] Sending large file from server to browser

2008-04-10 Thread dineshv
I want to send a 400KB text file to the browser each time a user comes to the site. The file will be sent once only during a user session. Are there any mechanisms in JS/JQuery to reduce the size of the file eg. send as a binary and de-binarize at the browser? Dinesh

[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] 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 with input f

  1   2   >