[jQuery] weird Ajax problem with posting

2007-03-22 Thread Vaska
I have this very strange problem...if I use Ajax in the Dave Hauensteins Another-in-place editor I get a 403 forbidden access error. The same page, has a number of $post()'s and they work perfectly. The are both undoubtedly going to the right url... What could be causing this? Here's an

[jQuery] accented chars

2007-02-16 Thread Vaska
I'm trying to internationalize something I'm building and javascript doesn't seem to like accented characters - when I pass them to the server side (via ajax post) they are in a rough place. Is there something built-in for this (something I'm clearly not finding)? A tutorial? Best practice?

[jQuery] watching events in iframes

2007-02-14 Thread Vaska
Yes, I should just try this...or...I should search this mail list. I've searched the list and didn't find what I was looking for though. Am I able, with JQuery, to watch events in an iFrame? Per the usual, I'm trying to build a file uploader that doesn't refresh the entire page. Meaning,

Re: [jQuery] watching events in iframes

2007-02-14 Thread Vaska
parent.function_name(); onload from within the iframe and things are good again. ;) On 14 Feb 2007, at 14:20, Vaska wrote: Yes, I should just try this...or...I should search this mail list. I've searched the list and didn't find what I was looking for though. Am I able, with JQuery

Re: [jQuery] Help with a function

2007-02-12 Thread Vaska
Thanks much Mike for the pointers. Noted. ;) On 11 Feb 2007, at 18:15, Mike Alsup wrote: all...this is the completed thing...certainly, if people want to crit what I've done here that could be educational... Hi Vaska, This is a very active mailing list so sometimes things get missed

Re: [jQuery] Help with a function

2007-02-11 Thread Vaska
$('#' + $(this).parent().attr('id') + ' li').each(function() { $(this).compare(check, $(this).attr('title')); }); }); } PS: I'm loving Jquery more everyday I get to work with it... On 10 Feb 2007, at 17:08, Vaska wrote

[jQuery] searching ajax results for preloading images

2007-02-07 Thread Vaska
How do I access the results of an ajax query? What I'm trying to do is search the results, preload any images found in the results, and only after that display to the page. Certainly, the query is fine...returns the results ot the page...but I'm not sure hwo Jquery goes from there... //

[jQuery] Firefox, reflow working not working...

2007-02-06 Thread Vaska
Yes, there is quite alot happening in these files, but I'm just trying to solve the problem in Firefox so I can clean it up. Works just fine in other modern browsers. http://www.queriously.com/#/project/tervueren/ The problem that I'm having is actually a Firefox bug - reflow. I need to

Re: [jQuery] history/remote question

2007-02-03 Thread Vaska
As I understand you want to send requests like this to the sever via Ajax: /index.php?hash=/project/things/ You could do that by simply using these links: a class=remote href=/index.php?hash=/project/things/Link/a plus remote plugin: $('a.remote').remote('#output'); But the hash

Re: [jQuery] history/remote question

2007-02-03 Thread Vaska
230 from...to... //var hash = '#remote-' + (i + 1); var hash = uri; (probably not the most elegant solution, but this was the quick 2 min hack) 'uri' was already for my ajax call... NOTE: USE SAFARI 2.0.4 OR GREATER! ;) Thanks Klaus... On 03 Feb 2007, at 11:48, Vaska wrote: As I

[jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
I have a really messy situation...I'll try to keep this short. I'm wondering if there is a way to rewrite the url in the browser bar without refreshing the page. I'm using Jquery/ajax to do something but unless I can rewrite that url I don't think we can do this. I could use an anchor

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Of Vaska Sent: vendredi 2 février 2007 10:37 To: jQuery Discussion. Subject: [jQuery] rewriting the browser address (without refresh)? I have a really messy situation...I'll try to keep this short. I'm wondering if there is a way to rewrite the url in the browser bar without refreshing the page

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Nice. location.hash is totally broken in Safari. ;( http://warpspire.com/journal/web-production/a-little-rant-on-safari/ On 02 Feb 2007, at 13:56, Mike Alsup wrote: Is THIS the dead end? Is there a way to get that anchor in there via javascript? location.hash = 'myAnchor';

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Sheesh, I've been looking at this...waiting to solve something else before I dove into it. ;) I have another idea...just a gut check here before I try this. Why couldn't I simply rewrite with javascript the urls (in a particular div) from href='page.php?id=12' to href='#12' at page load?

[jQuery] history/remote question

2007-02-02 Thread Vaska
Nice plugin, but I'm having some questions about implementing it. I'd like ot use an ajax with it, and also the has that exists in the href attribtue. $('a.rewrite').click(function(){ var uri = $(this).attr('href'); // this is working nicely, but no history (back button)

Re: [jQuery] history/remote question

2007-02-02 Thread Vaska
the correct information is not flowing, only the same page is being returned...once again, which is why I hope to be able to customize the $_POST portion of this. On 02 Feb 2007, at 17:06, Klaus Hartl wrote: Vaska, $('a.rewrite').remote('#ajaxhold'); $.ajaxHistory.initialize(); should work fine

[jQuery] help with append

2007-01-25 Thread Vaska
I've been toying with this backwards and forwards and I can't get it...have tried using 'after' as well. I'm trying to append a paragraph with an ID of 'dhtml'. In the past, this worked, but it was not inserting the line within the paragraph... $('div#dhtml').html(html); My best guess has

[jQuery] fadeOut text

2007-01-16 Thread Vaska
I'm trying to write my first jquery function using it's rules...it's hard getting started. I want to write a function that is ready at all times for any div's (or perhaps spans's instead) that when they appear they will fade away about ten second later. I'll attach a class to the span

Re: [jQuery] fadeOut text

2007-01-16 Thread Vaska
need to pause this, but I think I can throw a setTimeout in there and all will be ok. And yeah, it's working fine on a span. ;) On 16 Jan 2007, at 18:13, James Thomas wrote: Use div instead of span - that worked for me when I had a similar problem. Vaska wrote: I'm trying to write

Re: [jQuery] Interface 1.1

2007-01-16 Thread Vaska
interface is still very slow. dragging isn't nearly fast enough...there's like a two second time gap before you can see what you are doing. at least in Safari... On 16 Jan 2007, at 16:30, j. siefer wrote: really nice! thank you!!! your docu. says for draging elements use string

[jQuery] Sortables and containment

2006-11-09 Thread Vaska
I have sorting working for the most part, using Interface of course, but I'm able to drop my li containers into other lists on the page. Need to prevent this from happening... accept : 'box', helperclass : 'sorthelper', activeclass : 'sortableactive', hoverclass :

[jQuery] sortable and editable

2006-11-08 Thread Vaska
I can't find it now, but I'm sure that I saw some place a technique using jquery that would create a sortable list and also allowed for editing of the text (edit-in-place) inside the list container. Anybody know of this? Thanks...v ___ jQuery

[jQuery] position: fixed with

2006-10-04 Thread Vaska
Bonjour: Has anybody successfully used 'position: fixed;' with Interface FX? http://interface.eyecon.ro/demos/ifxslide.html In particular, the 'slide toggle down' function. I'm using... htmlbody #footer { position:fixed; bottom:0; z-index:10; } // jquery layer htmlbody