[jQuery] Re: .find() not working on link node in XML document

2009-09-11 Thread Sjeiti
I encountered the same problem last week. It's even stranger with a node named 'image', somehow that will get converted to img. I worked around it like this: [code]var iStart = data.indexOf(?xml); var sData = data.substr(iStart).replace(/(image\)/g,oSettings.rplImage

[jQuery] Re: Problem with refreshing

2009-02-23 Thread Sjeiti
Maybe it's better to do a callback and delete only the list-element of that user if the delete was succesfull, instead of rebuilding the entire user-list. That would save you the trouble of re-binding, and save you an extra server call.

[jQuery] 1.3.1/2 selecting bug... or feature?

2009-02-23 Thread Sjeiti
I've build a recursive tree. Now I'm trying to get the number of list elements but I get weirds results: $(li).length = 10; $(bodyul li).length = 4; Is this right?.. or a bug... (1.2.6 works as expected) [code] !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://

[jQuery] Re: 1.3.1/2 selecting bug... or feature?

2009-02-23 Thread Sjeiti
Bug is filed under #4224. ...Ron

[jQuery] Re: Superfish - sifr or image replacement?

2009-02-19 Thread Sjeiti
You could use php-gd, like so: [code]?php // Set the content-type //header(Content-type: image/png); $sText = isset($_GET[text])?$_GET[text]:asdf; $sFileName = isset($_GET[file])?$_GET[file]:(style/txtimg_. $sText..png); $iSize = isset($_GET[size])?intVal($_GET[size]):20; if

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-22 Thread Sjeiti
Strange why the include_once doesn't work on your machine. Just to be sure I changed the include_once to simply include (theoretically that shouldn't make any difference in this case, but you never know). I also fixed the IE bug (deleted a comma from the json).

[jQuery] SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
http://plugins.jquery.com/project/SFBrowser SFBrowser is a file browsing and upload plugin. Returns a list of objects with additional information on the selected files (filesize,date,width,height). Features: ajax file upload, localisation, sortable file table, file filtering, file renameing, file

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
No example page (yet). Got a screenshot here though: http://www.sjeiti.com/wp-content/uploads/2008/11/sfbrowser.png But if you download it, it should work right away. There are three examples on the bottom of the root-index page.

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
I checked it here on two webservers :-( What version php are you running? And if you have Firebug installed, what does the console say? or maybe... ah... bloody... you must be running IE The last version ran just fine in IE so I didn't bother to check (Firefox and Chrome were working so I

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
:-) heh... will do in just a minute... got a beer right here... just waiting for some people to show up so we can hit the streets. IE sucks though: can't see what is wrong there yet, guess I'm gonna have to make the php write a log file . On Nov 21, 5:17 pm, Mickster [EMAIL PROTECTED] wrote:

[jQuery] new plugins and some questions

2008-06-30 Thread Sjeiti
Hi group... After some time of using jQuery I recently took time to create two plugins myself. The first is a sorting plugin called TinySort: http://plugins.jquery.com/project/TinySort The other is a file browsing plugin called SFBrowser: http://plugins.jquery.com/project/SFBrowser I have a