[jQuery] Re: JQuery, Form plugin and FCKeditor

2007-04-29 Thread imatts
I've just noticed that if I submit the form again without changing anything, the modified text is picked up in the $_POST array, on the second try. Now I'm wondering if there's a way to simulate this update of the input data before sending the form, so that it has the correct data on the first at

[jQuery] Re: How to test if an event is already bound to an object ?

2007-04-29 Thread xavier
Thanks, very interesting and clarifying. Actually, I suspect that the loop (or selector) didn't find any element because the event handler I was looking for seems to be plug on a parent element. Anyway, I did it by filtering on the class attribute, that was a cleaner option. Thanks to all. X+

[jQuery] Re: simple fade in jqeury

2007-04-29 Thread R. Rajesh Jeba Anbiah
On Apr 28, 1:07 pm, happycodr <[EMAIL PROTECTED]> wrote: > my idea. > > > >content = klik= fade out new > > > > ''' > > new () > > '' > > oke,plz withd html old contents $('#foo').one('click', function(){ $(this).html('new content').

[jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Ⓙⓐⓚⓔ
been there! done that! a very common mistake with a very cryptic error message! On 4/29/07, Michael E. Carluen <[EMAIL PROTECTED]> wrote: Thanks Jake. You nailed it, pal! -- *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *

[jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Michael E. Carluen
Thanks Jake. You nailed it, pal! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: Sunday, April 29, 2007 10:27 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open' pro

[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Kush Murod
Hi Mike, I have replaced with the version you provided It is even weirder now in *IE*, target border also getting blocked and the more you click 'block' the more opacity increases http://khurshid.com/jquery/sandbox/blockUI/ --Kush Mike Alsup wrote: This should be fixed now. http://dev.jque

[jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Ⓙⓐⓚⓔ
probably you hard coded the location of the ajax url to a site other than the one where you served the page. specifying the host in an ajax url will always cause similar errors. On 4/29/07, Michael E. Carluen <[EMAIL PROTECTED]> wrote: Hello Everyone: I ran Firebug on a page that was suppo

[jQuery] ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Michael E. Carluen
Hello Everyone: I ran Firebug on a page that was supposed to be displaying a hidden DIV on toggle event, but fails. The div contains data from a .load(). The following error message was displayed: [Exception... "'Permission denied to call method XMLHttpRequest.open' when calling method: [n

[jQuery] Re: hover with unordered list

2007-04-29 Thread millionmonkey
I put an example out of the hover function for those who like to see working examples. Hover over the Unorder List in the left column to see it at work http://www.levelfield.com/newsticker1.html On Apr 29, 7:38 pm, Ralph <[EMAIL PROTECTED]> wrote: > I'm tryin to do a hover effect for a using a

[jQuery] Re: UTF-7 Ajax form

2007-04-29 Thread Ⓙⓐⓚⓔ
it hurts to remember utf-7. utf-8 is the common standard, utf-16 is the java standard. Are you sure you can't use utf-8?? I converted a few sites to use utf-8 and it makes coding much easier! On 4/29/07, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: I'm having some troubles with extended character

[jQuery] UTF-7 Ajax form

2007-04-29 Thread Jeffrey Kretz
I'm having some troubles with extended characters (copyright symbol, etc.) being submitted to the server as a part of a CMS I am writing. For example, the javascript "escape" command will convert the copyright symbol to %A9. However, the server receiving the ajax POST needs to see that as UTF-7

[jQuery] jQPie - 0.3 release, includes working extjs php code

2007-04-29 Thread Richard Thomas
jThe latest jQPie has been released, you can download it http://projects.cyberlot.net/trac/jqpie/wiki/WikiStart. The main thing in this release is the addition of an auto complete and a grid example based of the extjs library, One thing to keep in mind the css files provided by extjs will overru

[jQuery] Re: hover with unordered list

2007-04-29 Thread Ralph
I just figured it outlike Kenneth suggested i wrapped it in a document ready function: $(document).ready(function() { $("#home-categories ul li").hover(function(){ alert("Hello world!"); },function(){ alert("Out."); }); }); Sorry for the newb

[jQuery] Re: jQuery Server Side Grid

2007-04-29 Thread Tobias Parent
Works just ducky in FF 2.0.0.3, on XP - Toby [EMAIL PROTECTED] wrote: > It doesn't work in ff2.0 > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery (English)" group. To post to this group, send email to j

[jQuery] Re: hover with unordered list

2007-04-29 Thread Kenneth
You probably need to wrap your code in $(function(){/* code */}): $(function(){ $("#categories li").hover(function(){ alert("the mouse is over"); },function(){ alert("the mouse is out"); }); }); The code you posted immediately attempts to bind th

[jQuery] hover with unordered list

2007-04-29 Thread Ralph
I'm tryin to do a hover effect for a using a unordered listthis is what my code looks like: $("#categories > li").hover(function(){ alert("the mouse is over"); },function(){ alert("the mouse is out"); }); Category 1 Category 2 Category 3 Category 4 Category 5 i've tried di

[jQuery] Re: jQuery Server Side Grid

2007-04-29 Thread [EMAIL PROTECTED]
It doesn't work in ff2.0

[jQuery] Re: jQuery Server Side Grid

2007-04-29 Thread David
Hi Tony, That's a really neat little application. I can see how that could replace several 'pages' we regularly use in our own applications. Are you able to share your dyndata1.php file with us? It would be handy to see how you are handling the requests on the server side. Regards, David

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-29 Thread Sean O
Hey Rey, Looks like Uni-Form, http://dnevnikeklektika.com/uni-form/ an attempt to modularize and standardize form inputs, has moved to jQuery in their latest version 1.2. SEAN O http://www.sean-o.com Rey Bango-2 wrote: > > > Added: > > - GameGum Free Flash Games > > - ToonGum

[jQuery] Re: Integrating JQeury with other library

2007-04-29 Thread Jörn Zaefferer
howard chen schrieb: Halo, To many of us, jquery is a swiss army knife rather than complex js library such as dojo or yui. But sometimes, we really want to integrate jquery into our existing library in used, e.g. YUI or home-made library But we want jquery to under a specific namespace, such

[jQuery] Integrating JQeury with other library

2007-04-29 Thread howard chen
Halo, To many of us, jquery is a swiss army knife rather than complex js library such as dojo or yui. But sometimes, we really want to integrate jquery into our existing library in used, e.g. YUI or home-made library But we want jquery to under a specific namespace, such as YAHOO.util.jquery..

[jQuery] Re: stay at top div

2007-04-29 Thread Jeffrey Kretz
Well, I'm not sure if this is what you're interested in. The CSS attribute position:fixed will do what you want, but it is not supported by IE6. However, there is a CSS hack around that: http://www.cssplay.co.uk/layouts/fixed.html I'm not sure if their solution is to your liking, but it one way

[jQuery] Re: stay at top div

2007-04-29 Thread Erik Beeson
You want the css property position: fixed, but it doesn't work in IE6. There are a few different workarounds for IE6 (google IE6 position fixed), but the all come with various idiosyncrasies. Any javascript/jQuery based solution (other than just using it to set CSS properties) is going to "flicke

[jQuery] stay at top div

2007-04-29 Thread Jack Killpatrick
I'm looking for a way to get a div to stay at the top of a page when the user scrolls the page, preferably with no flickering (of the div)...and it has to work in IE6/7. It's possible that it can be done without js/jquery, but am fishing. the ones I've found so far that were pure css didn

[jQuery] Re: newsticker plugin updated

2007-04-29 Thread millionmonkey
Sam, thanks for the update. Just in the nick of time for me as well. Newsticker Example: http://www.levelfield.com/newsticker1.html On Apr 27, 12:06 pm, Sam Collett <[EMAIL PROTECTED]> wrote: > I've updated my news ticker plugin with some bug fixes and added a few > more examples of how to use

[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Mike Alsup
This should be fixed now. http://dev.jquery.com/browser/trunk/plugins/blockUI/jquery.block.js?format=txt Mike On 4/29/07, Mike Alsup <[EMAIL PROTECTED]> wrote: Kush, Try adding this as the last statement in the (i < 2) conditional block: if (!full) s.setExpression('left', '0 - parseInt(jQu

[jQuery] jQuery Server Side Grid

2007-04-29 Thread Tony
I have developed a server side Grid plugin based on http://makoomba.altervista.org/grid/ Demo: http://trirand.com/jqgrid/jqgrid.html The page is in Bulgarian. Grid support sorting, paging, resizing. The returned data from server must be in XML One to many relation is possible with two grids. Sor

[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Mike Alsup
Kush, Try adding this as the last statement in the (i < 2) conditional block: if (!full) s.setExpression('left', '0 - parseInt(jQuery(this.parentNode).css("borderLeftWidth"))'); Mike On 4/29/07, Kush Murod <[EMAIL PROTECTED]> wrote: Hi, I've found that if your target element has border

[jQuery] TreeMenu plugin and i frame

2007-04-29 Thread amircx
i need somehow to make that onclick on a tree item it will open iframe and able to close it once action inside the frame is fired and return success flag i tried to mess with it and i think that is not possible anyone has success to do it? -- View this message in context: http://www.nabble.com

[jQuery] BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Kush Murod
Hi, I've found that if your target element has border set and you block() it, in IE it looks weird Possible bug, below demo page http://khurshid.com/jquery/sandbox/blockUI/ Cheers, --Kush P.S. @Mike Alsup - great plugin and code is clean, well documented, great to have you here

[jQuery] Re: How to test if an event is already bound to an object ?

2007-04-29 Thread Brandon Aaron
You should take a look at this short blog post: http://www.learningjquery.com/2007/03/selecting-elements-by-properties-and-dom-expandos -- Brandon Aaron On 4/29/07, xavier <[EMAIL PROTECTED]> wrote: Hi, The this.$events is never existing as far as I understand (based on firebug), no matter i

[jQuery] Re: manipulate div inside iframe

2007-04-29 Thread Kenneth
If your jQuery is outside the iframe, you could do: jQuery('iframe').hide(); Inside, not sure.. On 4/29/07, amircx <[EMAIL PROTECTED]> wrote: hey i got a script that seats inside iframe how its is possible to get the id of the iframe and then hide it ? till now i have a script that knows

[jQuery] Re: Is it possible to chain this?

2007-04-29 Thread Kenneth
One way would be to extract the click function out: function doClick() { var getLink = $(this).prev().prev().attr("href"); return getLink.slice(getLink.indexOf("r=")+2, getLink.indexOf("&tp")); } Then: $('#greyLink').click(doClick); I believe that should work. On 4/29/07, Yansky <[EMA

[jQuery] Is it possible to chain this?

2007-04-29 Thread Yansky
Hi guys, I was wondering about the following code and if it's possible to chain it. At the moment it works fine as is, I'm just curious if it is possible. My original code: $('#greyLink').click(function(){ var getLink = $(this).prev().prev().attr("href"); return getLink.slice(getLink.indexOf("r=

[jQuery] Re: Determining when an image is fully loaded

2007-04-29 Thread Jörn Zaefferer
wyo schrieb: On 28 Apr., 23:12, "Mike Alsup" <[EMAIL PROTECTED]> wrote: var $img = $('') .appendTo('#pictures') .bind('load', function() { alert('loaded') }); Thanks, this works. Why do you use "appendTo" instead of "html"? I must say I don't understand the difference. $("

[jQuery] manipulate div inside iframe

2007-04-29 Thread amircx
hey i got a script that seats inside iframe how its is possible to get the id of the iframe and then hide it ? till now i have a script that knows inisde the Iframe what is the div name of the iframe . but i dont success to hide it var IfrmDiv=jQuery(frameElement.parentNode).attr('id'); i trie

[jQuery] Re: Determining when an image is fully loaded

2007-04-29 Thread wyo
On 28 Apr., 23:18, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > Maybe $('#pictures').html(...).children().bind(...) > Amazingly this works, see http://www.orpatec.ch/gallery4.html > But I think you're trying to hard to use jQuery. How about this > (tested on FF2/Mac): > Possibly but I want to learn

[jQuery] Re: Determining when an image is fully loaded

2007-04-29 Thread wyo
On 28 Apr., 23:12, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > var $img = $('') > .appendTo('#pictures') > .bind('load', function() { alert('loaded') }); > Thanks, this works. Why do you use "appendTo" instead of "html"? I must say I don't understand the difference. O. Wyss

[jQuery] New (additional) autocomplete demo

2007-04-29 Thread Stefan Kilp [sk-software]
Hi, thanks to Jörns newest svn updates i finally got my first autocomplete demo finished. to see what can be done with the cool autocomplete plugin see http://kilp.net/test/autocomplete/autocomplete-demo.html the important idea about this is that a current (old style form) using a pulldown b

[jQuery] Re: Autocomplete plugin problem

2007-04-29 Thread Stefan Kilp [sk-software]
Hi Jörn, ein update auf die neuste version (28.4 aus svn) hat alle Probleme beseitig :-) falls du noch ein paar bilder brauchst, hier der link http://kilp.net/test/autocomplete/___thumb.zip thanks stefan > Stefan Kilp [sk-software] schrieb: > > Hi Jörn, > > > > maybe you could give me a more

[jQuery] Re: Autocomplete plugin problem

2007-04-29 Thread Jörn Zaefferer
Stefan Kilp [sk-software] schrieb: Hi Jörn, maybe you could give me a more detailed hint: Try this: $("#ac_werke").autocomplete("imagesearch.php", { delay: 250, width: 300, minChars:2, formatItem: false, select

[jQuery] Sortables: configurable display-style?

2007-04-29 Thread dfd
Hello group, i noticed that Sortables always appends a inline-style with hard-coded displaystyle 'block' , at least for div's, to the dragged object. Grmpf. Not very usable when your display-style is "table-row" or other table-like styles... It would be nice if we could have configurable displa

[jQuery] tickbox close window

2007-04-29 Thread amircx
hey. im using thickbox and i want that after some proceeses its will close the window without user needs to click ive tried to print out somthing like parent.TB_remove(); its not working... how its can be done right? -- View this message in context: http://www.nabble.com/tickbox-close-win

[jQuery] Re: history in ajax and setting the ajax url

2007-04-29 Thread Klaus Hartl
xavier schrieb: Hi, Sorry, I'm completely lost. I tried to dig into your tabs plugin, I don't understand where you call it. I found: if (settings.bookmarkable && trueClick) { // add to history only if true click occured, not a triggered click $.ajaxH