[jQuery] Re: How to make ajax call to subdomain

2009-12-10 Thread Dominik
i'm pretty sure this wont work because of the same origin policy as i already mentioned in another thread: http://groups.google.com/group/railo/browse_thread/thread/cb189b4a9878c506 On 10 Dez., 01:53, PiotrJaniak janiak.piot...@gmail.com wrote: $.ajax({        url: http://api.example.com;,    

[jQuery] Re: parsing big JSON file

2009-12-01 Thread Dominik
need some values out of a really big json file you should think about implementing some kind of filter server-side. to let the client download 100mb just for a bunch of data isnt really viable anyways ;) dominik On 1 Dez., 09:44, km srikrishnamo...@gmail.com wrote: Hi all, I am currently using

[jQuery] Re: PHP jQuery on different port

2009-11-27 Thread Dominik
i guess your experiencing the same origin policy problem here, which lets you only load data/whatever via ajax from the same origin as the calling page! it seems that the origin isnt just the domain but also the used port. so to make this work you could either use a new http header field which

[jQuery] Refreshing Problem

2009-11-10 Thread Dominik Kohlstruck
Does noone have a solution to this...? Hey guys, I'm working on a status-Updater. It works, there is just one problem, after sending a Status I have to manual reload the page to let the script work again. Do you can help me please? Here's the code: script language=javascript

[jQuery] [treeview] Don't close subtree when clicking on tree header

2008-11-13 Thread Dominik Deobald
+ item 2 item 1.1 and 1.2 should not disappear. Is there a simple way to achieve that? Any help appreciated. Thanks, Dominik

[jQuery] [treeview] Suggestion: function callback after async update

2008-11-13 Thread Dominik Deobald
Just a quick suggestion for future versions of treeview: I've added if (typeof(settings.asyncload) == 'function') { settings.asyncload(container); } at the end of the async load function to be able to inject some of my own code after an

[jQuery] Re: [treeview] Don't close subtree when clicking on tree header

2008-11-13 Thread Dominik Deobald
or replace the span on the parent item. Jörn On Thu, Nov 13, 2008 at 4:06 PM, Dominik Deobald [EMAIL PROTECTED] wrote: I'm using treeview in one of my projects. Treeview automatically opens and closes the subtree if you click on an item that contains children. I need the option to allow

[jQuery] jQuery Form Plugin Action with #

2008-05-14 Thread Dominik Weiss
of jquery.form.js): url: this.attr('action').replace(/#.*$/, '') || window.location.toString(), It works, but I am not very happy with it. Is there another way or am I doing something wrong? Or did I found a bug? ;-) Dominik