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

2007-04-29 Thread xavier
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

[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

[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 script parent.TB_remove(); /script its not working... how its can be done right? -- View this message in context:

[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

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

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

[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 = $('img src='+files[pos]+' id=file'+pos+'class=picture') .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

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

[jQuery] manipulate div inside iframe

2007-04-29 Thread amircx
hey i got a script that seats inside iframe iframe src=page.php id=hideme1 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

[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

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

[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 iframe src=page.php id=hideme1 how its is possible to get the id of the iframe and then hide it ? till

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

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

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

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

[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 Server Side Grid

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

[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: script $(#categories li).hover(function(){ alert(the mouse is over); },function(){ alert(the mouse is out); }); /script div id=categories ul liCategory 1/li liCategory 2/li liCategory

[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

[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

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

[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

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