[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
a.karimzadeh wrote: by using the includeMany 1.0.0 plugin you can add multiple files with different callbacks for each one and also a global callback after all are loaded check it here: http://www.arashkarimzadeh.com/index.php/jquery/17-includemany-jquery-include-many.html Arash Karimzadeh

[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
a.karimzadeh wrote: by using the includeMany 1.0.0 plugin you can add multiple files with different callbacks for each one and also a global callback after all are loaded check it here: http://www.arashkarimzadeh.com/index.php/jquery/17-includemany-jquery-include-many.html Arash Karimzadeh

[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
I meant: And a way to update a thread of load calls with more load-calls, while it runs (also with this-must-load-before-that).. Would be very usefull too.

[jQuery] tech demos

2009-02-19 Thread Rene Veerman
Hey, now that i have a working example of my CMS again, i'd like to share a tech demo with the world, and see other people's work with jQuery too.. Mine is currently up at http://snow-show.info/ It tends to max out a browser with all the visuals ;) Lemme know what you think of it...

[jQuery] Re: JSON and jQuery

2009-02-15 Thread Rene Veerman
Alain Roger wrote: Hi, i didn't find anything on jQuery and JSON. is there any decoder ? thanks a lot. jQuery just does an eval on JSON. so no data checking If you want data checking, go to http://json.org, and download the javascript JSON implementation. They do change the array and

[jQuery] Re: selector best practice

2009-02-15 Thread Rene Veerman
I'd say go for just (#uniqueid) as that likely maps to document.getElementById() (fast) and bypasses the normal jquery traversing that is required if you put in more selectors. SteelRing wrote: This may sound stupid to y'all jquery practitioners, but i wonder which method is fastest

[jQuery] Re: How to make a secured login form

2009-02-13 Thread Rene Veerman
I have secured the login form for my CMS with a challenge-response thing that encrypts both username and password with the (login-attempts-counted) challenge (and; here's my problem: a system hash) sent by the server (it would end up in your html as a hidden inputs, or as part of a json

[jQuery] Re: How to make a secured login form

2009-02-13 Thread Rene Veerman
Rene Veerman wrote: //$pwh = md5 ($users-rec[user_password_hash] . $challenge); Ehm, best to use Either sha256 OR md5 for BOTH fields ofcourse ;) It was a hasty paste.

[jQuery] dropping between items that have no gap between them

2009-02-08 Thread Rene Veerman
Hi.. Quick question about drag-n-drop with jQuery UI. For my CMS, I have a admin tree of items of various types, that i want to enable drag-n-drop between. I aim to emulate windows explorer in most aspects of operations, with some improvements ofcourse. I had already found a drag-n-drop

[jQuery] fade animations for graphics next to eachother; issues

2009-02-01 Thread Rene Veerman
Hi. I've got several graphics next to eachother that i've set to opacity=0.4; on mouseover i want them to light up to opacity = 1. So far so good, i have onMouseOver and onMouseOut events that get called, and i thought i'd just add animate() calls and i'd be fine.. Turns out that aint so..

[jQuery] Re: fade animations for graphics next to eachother; issues

2009-02-01 Thread Rene Veerman
Solved it; don't put the graphics in a table cell to arrange them, use float:left; Then it works as expected with animate() calls in onmouseover and onmouseout Rene Veerman wrote: Hi. I've got several graphics next to eachother that i've set to opacity=0.4; on mouseover i want them

[jQuery] getJSON - how to retrieve plain text?

2009-01-14 Thread Rene Veerman
I have a getJSON call that works fine in FF, but bugs in IE. I get no data. :( So i want to see what the plaintext is that's returned in the success callback.. Using the new 1.3 jQuery, btw.. code: var rc = $('select#regions_countries')[0]; var rr = $('select#regions_regions')[0];

[jQuery] can one detect if the current tab is still visible?

2008-12-11 Thread Rene Veerman
I've got a slideshow that polls the server each 7 seconds for new images to display, and want to pause it when the tab that the user is on isn't visible.. I have little hope of it being possible (in all browsers), but am asking anyway ;) Perhaps, perhaps, they thought of it.. If u know of

[jQuery] [offtopic] can you perhaps tell why this page doesnt show in firefox?

2008-11-21 Thread Rene Veerman
This page displays fine in IE, opera and safari. But not in firefox :( http://tevlar.net/mytevlar/ any clues greatly appreciated.. -- -- Rene Veerman, creator of web2.5 CMS http://mediabeez.ws/

[jQuery] Re: Panel Interface for webpage?

2008-11-10 Thread Rene Veerman
Shawn wrote: Thanks Rene. Didn't find anything promising there though... but great resource! Shawn Then you're gonna have to code it yourself.. pretty please release it as a plugin :)

[jQuery] Re: Panel Interface for webpage?

2008-11-09 Thread Rene Veerman
Shawn wrote: I'm not sure if I've seen a plugin for this, or even a website, but thought I'd ask here before creating custom code We're looking to have panels (aka widgets) on the page. (A dashboard perhaps?) Each panel is a given size - say 100x100, has a title bar, and

[jQuery] [offtopic] [article] domWrite() lazy loading ads: external code using document.write() - execution AFTER the page has rendered

2008-11-07 Thread Rene Veerman
Friend of mine wrote this article that might be of interest to you: Often there is advertizing code to be implemented in a page, and there are 2 problems one may face: (1) the website hangs due to a lag on the code delivering server (2) you normally cannot lazy load the script since

[jQuery] other easing plugins than the standard ones?

2008-10-31 Thread Rene Veerman
Hi, i use .animate() in my cms and would like to try some other easing plugins besides linear and swing, the builtin ones. But i can't find any to download on the jquery site.. Maybe i'm not looking right.. Have you found them?

[jQuery] [released] themeable canvas loader icon, with semi-transparency support

2008-10-30 Thread Rene Veerman
http://mediabeez.ws/mediaBeez/permalink.php?tag=visCanvasLoaderGraphic This the second opensource plugin that I release; a loader icon capable of displaying colorfull yet semi-transparent animated graphics. It's simple to use and design for.. I'll admit right now that there are still some

[jQuery] [released] themeable canvas loader icon, with semi-transparency support

2008-10-30 Thread Rene Veerman
http://mediabeez.ws/mediaBeez/permalink.php?tag=visCanvasLoaderGraphic This the second opensource plugin that I release; a loader icon capable of displaying colorfull yet semi-transparent animated graphics. It's simple to use and design for.. I'll admit right now that there are still some

[jQuery] Re: [hacking] animating a div with fuzzy png borders

2008-10-29 Thread Rene Veerman
ever work on it again and get it fixed then i'll let u know.. Rene Veerman wrote: hi. i want to animate a div element that is styled as a jquery dialog. During the animation i need to adjust various widths and heights of the border and background child-divs.. So i got a function to do

[jQuery] Re: pagination solution

2008-10-27 Thread Rene Veerman
'plugin' usually refers to a javascript thing. you need php aswell and since db definitions vary wildly, it's hard to create something standarized.. i dont know of any components/plugins that do this and are easy to configure.. i did write something on this topic, which you can find

[jQuery] is this usefull as an lgpl-ed component? canvas fancy ajax loader icon

2008-10-23 Thread Rene Veerman
i've made a loader icon based on the canvas tag.. demo up at http://mediabeez.veerman.ws/mb/ this is an early draft, and i intend to add a bit more features (like scalability) and themes.. but i'm wondering if there would be an interest in a component like this esp with the still

[jQuery] how would you initialize google excanvas on a new piece of html?

2008-10-22 Thread Rene Veerman
Hi. I'm trying to use google's excanvas in my CMS, but ran into a snag; excanvas initializes all canvas tags in the dom on startup. my cms loads much html dynamically, and i need to initialize excanvas on those new dom nodes. the new dom node i'm trying to init is called __self.html (of a

[jQuery] Re: how would you initialize google excanvas on a new piece of html?

2008-10-22 Thread Rene Veerman
i tried G_vmlCanvasManager_.init(__self.html); but that didnt work.. probably because this thing runs inside an anon function, right? Rene Veerman wrote: Hi. I'm trying to use google's excanvas in my CMS, but ran into a snag; excanvas initializes all canvas tags in the dom

[jQuery] SOLVED Re: [jQuery] Re: how would you initialize google excanvas on a new piece of html?

2008-10-22 Thread Rene Veerman
Solution: // Copyright 2006 Google Inc. //tiny fix by Veerman Internet Services to allow initialization on HTML loaded after document.ready // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance with the License. // You may obtain

[jQuery] Re: SOLVED Re: [jQuery] Re: how would you initialize google excanvas on a new piece of html?

2008-10-22 Thread Rene Veerman
of.. Rene Veerman wrote: Solution: // Copyright 2006 Google Inc. //tiny fix by Veerman Internet Services to allow initialization on HTML loaded after document.ready // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance

[jQuery] Re: SOLVED Re: [jQuery] Re: how would you initialize google excanvas on a new piece of html?

2008-10-22 Thread Rene Veerman
original package at http://excanvas.sourceforge.net/

[jQuery] Re: get a fancybox/lightbox from a FORM?

2008-10-08 Thread Rene Veerman
i dont know fancybox, but if your lightbox supports HTML it should support submitting a FORM. i'd try to initialize the fancybox on the div containing the form, not the form itself. Hilmar Kolbe wrote: Is there a way to get a fancybox (http://fancy.klade.lv/) or any other lightbox from

[jQuery] Re: Code execution order

2008-10-08 Thread Rene Veerman
function UpdateList() { // Open the xml file $.get(locations.xml,{},function(xml){ // Run the function for each name tag in the XML file $('location',xml).each(function(i) { alert($(this).find(name).text());

[jQuery] Re: Whats best for js compression, packer, jsminify, YUI?

2008-10-08 Thread Rene Veerman
I like and use phpjso (http://www.cortex-creations.com/software/phpjso). It can also obfusicate, but if you do that then be sure to use the 'fast decompression' option otherwise you have a initialization lag of up to a full second for +-40Kb of script. JimD wrote: Hi all, I know this has

[jQuery] Re: Ajax/load help with external javascripts

2008-10-07 Thread Rene Veerman
; document.getElementsByTagName(head)[0].appendChild(script); }}; } the 'language' attribute is deprecated in XHTML. cheers - ricardo Rene Veerman wrote: Yep, you'll have to add the javascript nodes in the HTML you're

[jQuery] Re: How to uninstall the

2008-10-07 Thread Rene Veerman
add a global variable somewhere that your onready callback checks? if true: execute, if false:dont. then manipulate that global var instead of the callback itself? Kynn Jones wrote: I have a jQuery-based script that performs some updates on the current page (using the load method), and

[jQuery] Re: random image and content loading

2008-10-07 Thread Rene Veerman
if i get it correctly, in the xhtml content there's an IMG tag with the image that needs to be pre-loaded. There's a plugin that can do this for you; http://flesler.blogspot.com/2008/01/jquerypreload.html http://demos.flesler.com/jquery/preload/ janus76 wrote: I was wondering if anyone can

[jQuery] Re: Ajax/load help with external javascripts

2008-10-05 Thread Rene Veerman
Yep, you'll have to add the javascript nodes in the HTML you're inserting into the DIV manually. WTF, i'll be a nice guy and post my routines for it. you'll have to adapt them yourself ;) function parseJavascript (htmlElement) { var scripts = $('SCRIPT', htmlElement); var

[jQuery] forgotten bug? java clashes with jquery, by design, at least since 1.2.1

2008-10-04 Thread Rene Veerman
Whenever one uses jquery on a page with a java applet, either with object or embed, there are CRIPPLING ERRORS on many operations (that are executed in the background). There's already a bugticket for it, but it hasnt been updated in a while: http://dev.jquery.com/ticket/2349 (lists causes

[jQuery] temporarily disable ajaxSend?

2008-10-04 Thread Rene Veerman
In order to prevent a clash between a java applet and jquery, i need to disable the ajaxSend trigger for a certain ajax call. How do i do that?

[jQuery] java class clashes with jquery

2008-10-02 Thread Rene Veerman
I this jquery-related error when i run a java applet (that uploads files through FTP) I'm wondering how this error occurs, firebug doesn't show a call-stack trace... :( Java class com.javauploader.hermes.U has no public field or method named jQuery1222913664275 var id = elem[ expando ];

[jQuery] Re: Blur effect with jQuery ?

2008-10-02 Thread Rene Veerman
you can $(element).fadeOut, but is that what you are looking for? blur means many things. do you mean 'disable' with it? or just a visual blur? IE can do a visual, guassian blur on a div, but it's not supported in other browsers. [EMAIL PROTECTED] wrote: Hi, I can't find this effect in

[jQuery] Re: CSS - height and top position

2008-09-29 Thread Rene Veerman
perhaps: var $c = $('#content'); $('#footer').css({ height: $c[0].offsetTop + $c[0].offsetHeight + 5 }); Filipe Avila wrote: hey, everyone. how can i get the height of an element and, based on its given height, set the position of another element from the top? for example, if there's too

[jQuery] Re: Find all li tags without an a tag inside

2008-09-27 Thread Rene Veerman
dunno if there's a simple jquery way of doing it, but you could do: $('#LHNav li').each(function(){ if ($(' a',this).length==0) { //no A href, add it } else { //do something else } }); flycast wrote: I am stumped. I have nested unordered lists. I want to attach a click

[jQuery] Re: problem with mouseover / mouseout

2008-09-27 Thread Rene Veerman
try this plz $(document).ready(function() { $('a.view').hover(function() { $(this).stop().fadeTo ('normal', 1); }, function () { $(this).stop().fadeTo ('normal', 0.33); }); }); eewan wrote: I'm trying to make script that has faded image at start 30%, after hover sets

[jQuery] Re: Need help with jQuery array

2008-09-24 Thread Rene Veerman
Give your UL tag an id 'menu', and replace your document.ready code with this: $(document).ready(function() { $('ul#menu li a').each (function () { $(this).append ('span class=hover/span'); var $span = $(' span.hover', this).css('opacity', 0); $(this).hover

[jQuery] Re: cross domain XML with ajax

2008-09-24 Thread Rene Veerman
http://www.phpfour.com/blog/2008/03/06/cross-domain-ajax-using-php/ ?php /** * Transport for Cross-domain AJAX calls * * This is an implementation of a transport channel for utilizing cross-domain * AJAX calls. This script is passed the data through AJAX along with two special * hidden

[jQuery] Re: Remove comment script

2008-09-24 Thread Rene Veerman
johhnnyboy wrote: Hello, Im looking for a jquery script that allowes removing comments (which are placed in divs) for the site with an animation and then removes it also from my database. Something similar to hyves comments system. that's a bunch of things working together... jquery

[jQuery] Re: General JavaScript opitmization question

2008-09-24 Thread Rene Veerman
i usually use the first method you described; a global var maintained by 2 functions, start and stop. the other way is too complicated imo :) AdamV wrote: I'm writing an AJAXy application and when I start doing an ajax call, I want to block the UI and show a loading graphic until the loading

[jQuery] Re: Traversing table

2008-09-08 Thread Rene Veerman
put valid id's on all relevant tags, then reference by id? On Mon, Sep 8, 2008 at 10:38 PM, Jayzon [EMAIL PROTECTED] wrote: Hi! I've got a table with multiple rows which I'd like to traverse in a special way - here's the html (for better reading, I just included two rows, these rows are

[jQuery] Re: How do I access the function handlers of an event.

2008-09-06 Thread Rene Veerman
eh, i just realized that the click() of jquery might trigger in another way than setting the DOM element onclick property... you'll just have to try it ;) On Sat, Sep 6, 2008 at 2:10 PM, Rene Veerman [EMAIL PROTECTED] wrote: $('#myid')[0].onclick to call: $('#myid')[0].onclick() DOM

[jQuery] Re: Calculating the size of a string to make it fit into the whole window

2008-09-06 Thread Rene Veerman
might be easier to put a very long string in a div, then set overflow:hidden for that div. but the height and width of the div are div.offsetHeight and div.offsetWidth; they're DOM element properties, not jQuery methods. they're always in an integer number representing pixels. so if you want the

[jQuery] Re: return on error - how to handle an error when an address is not returned in jmaps

2008-09-06 Thread Rene Veerman
doesnt jmaps throw some kind of error (or err return val) when it can't find the address? to put markup for your webapp inside jmaps is bad code design, so dont do it unless you absolutely have to. re-read the jmaps docs. On Fri, Sep 5, 2008 at 3:48 PM, pedalpete [EMAIL PROTECTED] wrote: I've

[jQuery] Re: Meta tag Keyword Upgrade with jQuery

2008-09-06 Thread Rene Veerman
On Thu, Sep 4, 2008 at 7:40 PM, [EMAIL PROTECTED] wrote: Dear Folk, I've developed a website with ajax capabilities and bookmarkable supports history, I would like to give a specefic Meta tag to each page ... what is the solution ? there is two thing in my mind 1- upgrade the meta tag with

[jQuery] Re: Prevent IE Cross Page Leak

2008-09-06 Thread Rene Veerman
the jquery dom manipulation routines are not to be over-used. instead of zillions of calls to jquery, you should prepare a html statement as a string; var html = ''; html += 'div id=something'; html += 'somethingElse'; html += '/div'; to prevent IE mem leaks, i read to do this: var div =

[jQuery] Re: Finding next/prev node

2008-09-06 Thread Rene Veerman
any DOM element has a property called nextSibling, which points to the very next DOM element, text/html/whatever. var ns = $('#search')[0].nextSibling; var ns = document.getElementById ('search').nextSibling; On Tue, Sep 2, 2008 at 4:43 PM, Finding_Zion [EMAIL PROTECTED]wrote: I need to have

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-06 Thread Rene Veerman
if the weather widget creates a javascript object in the js namespace, you can test for that when the page has loaded. you can even try to re-initialize the weather widget if it fails the first time (but that would take some doing). you'd need to include the weather widget in the head of your

[jQuery] Re: multiple getJSON calls appear to wait for first response to run any callbacks in FF?

2008-09-06 Thread Rene Veerman
don't wait for any response, just poll an array of 'open' responses and handle whichever are ready? On Thu, Sep 4, 2008 at 3:13 PM, Josh Rosenthal [EMAIL PROTECTED] wrote: Hey all, I'm building a google map based application which allows users to query a number of different json returning

[jQuery] Re: How do I access the function handlers of an event.

2008-09-06 Thread Rene Veerman
$('#myid')[0].onclick to call: $('#myid')[0].onclick() DOM element property, not jQuery method. (again!) ;) On Fri, Sep 5, 2008 at 8:36 AM, Drew LeSueur [EMAIL PROTECTED] wrote: $('#myid').click() will trigger the click event; and $('myid').click(function(){alert('clicked');}); will

[jQuery] Re: How to do something using JQuery

2008-09-06 Thread Rene Veerman
try this; [number] is either the SQL row ID of the name (good), or an arbitrary index (less good). 1) each checkbox gets a html id 'name_[number]_cb' 2) each name gets a html id 'name_[number]_label' 3) each circle gets a html id 'name_[number]_button' 4) each circle gets a html

[jQuery] Re: I must be missing something simple...

2008-09-06 Thread Rene Veerman
http://www.learningjquery.com/2006/09/introducing-document-ready On Fri, Sep 5, 2008 at 4:29 PM, Jim Buzbee [EMAIL PROTECTED] wrote: I've got some jQuery code that seems to work fine in Safari and Firefox both under OSX and Windows. But I've been beating my head against the wall trying to

[jQuery] need to display a number of items based on browser size, before i get to run any js

2008-09-03 Thread Rene Veerman
Hi. Today, i've got a chicken-and-egg puzzle for your enjoyment :) In order to properly support google indexing of published content hosted by my CMS', which scales to browser-size, no matter what it is initially or how the user resizes it. Adding meta info for the many pictures hosted via my CMS

[jQuery] Re: Can't get css png fix plugin to work....

2008-08-23 Thread Rene Veerman
did you initialize the script after loading it? On Fri, Aug 22, 2008 at 8:06 PM, Aaron [EMAIL PROTECTED] wrote: Hi I just tried getting the plugin for jquery it's called cssPNGfix it's supposed to fix the problems with IE for tranparent png files. any suggestions how to get this to work??

[jQuery] Re: scrollpane and UI Dialog window

2008-08-23 Thread Rene Veerman
I've had to tweak jscrollpane aswell to get it to work properly (on resizing a dialog). Sometimes you have to nudge the DOM back to something that works with jscrollpane. On Fri, Aug 22, 2008 at 9:09 AM, Toccamonium [EMAIL PROTECTED] wrote: Hi, onclick we open the UI Dialog window for

[jQuery] Re: jscrollpane and tab key

2008-08-23 Thread Rene Veerman
yep i've had this problem and came up with a solution, but it requires some tweaking; call the following code whenever the view is resized or focus is changed - you'll have to hook the onblur handler of your input elements and set __self.focussedElement to it; theres no DOM way that i found to do

[jQuery] Re: Script Wouldn't Work After Content Reloaded

2008-08-23 Thread Rene Veerman
you need to re-initialize the click handler if you replace the element it was referring to. On Fri, Aug 22, 2008 at 8:44 PM, SHiDi [EMAIL PROTECTED] wrote: Hi all. I've tried to reload a content using jQuery.post. However, it seems that once the content is reloaded, the script didn't work

[jQuery] Re: Background image

2008-08-21 Thread Rene Veerman
something like http://mediabeez.ws? On Wed, Aug 20, 2008 at 11:56 AM, dinadult [EMAIL PROTECTED] wrote: Gud day to all of you..im doing this site since last wk..im already finished except for this one,i want my content over the background images..i try to play this around and surf the net to

[jQuery] jQuery.ajax():success(data) - data truncated on IE, not FF, when using gzip

2008-07-19 Thread Rene Veerman
Hi. There seems to be a problem with IE reading gzipped content. If on the PHP end i gzip the data, my data var in success() of jQuery.ajax({}) is truncated and thus unusable. If i dont use gzip then all is fine, i get the full data. Has anyone else experience with IE barfing on gzipped content?

[jQuery] Re: Hide DOM when clicking outside it? (Newbie Question)

2008-07-18 Thread Rene Veerman
Possibly. Please show us the code / an example.. On Thu, Jul 17, 2008 at 7:41 PM, Doover [EMAIL PROTECTED] wrote: I have a simple menu which are shown when you click on a link. Is it possible to hide the menu when I click outside it? Any help are appreciated. Thanks.

[jQuery] Re: Feedback for new plugin idea: ui.querybuilder

2008-07-18 Thread Rene Veerman
I like the idea for this plugin, but fear it might be hard to use once done. Searches can be about anything. How does the UI know what graphics to display for a criterion? How do you plan to communicate a search-query to the server? And what kind of results-display do you propose? On Fri, Jul

[jQuery] Re: jScrollPane with jQuery 1.2.6

2008-07-14 Thread Rene Veerman
Yep, although i had to tweak it a bit.. On Mon, Jul 14, 2008 at 8:47 AM, samer [EMAIL PROTECTED] wrote: does jScrollPane work with jQuery 1.2.6 It's been acting weird ever since I upgraded it today, my previous version 1.2.1 of jQuery

[jQuery] Re: Replacing elements when validate successful

2008-06-21 Thread Rene Veerman
Try including the submithandler in the first call to validate(), like so: $(#register).validate({ highlight: function(element, errorClass) { $(element).addClass(errorClass ); $(element.form).find(label[for= + element.id + ]).addClass(errorClass); }, unhighlight:

[jQuery] Re: Binding Event to Dynamically Created Element (works in FF but not in IE)

2008-06-21 Thread Rene Veerman
I'm missing the appendChild() method in loadElements() On Sat, Jun 21, 2008 at 10:22 AM, MysteryNerd [EMAIL PROTECTED] wrote: I'm in the process of converting standard javascript code to jQuery, it has already save tons of lines of code and make it more manageable. I'm a bit stumped to why

[jQuery] Re: Firefox is taking a long time to load an external script

2008-06-20 Thread Rene Veerman
how do you load it? On Thu, Jun 19, 2008 at 5:59 PM, cfdvlpr [EMAIL PROTECTED] wrote: For some reason, Firefox consistently takes about 30-40 seconds to load an external script. IE loads the script right away. The javascript is actually a JSP script that returns Javascript code for a live

[jQuery] ajax: refering back to {data:}

2008-06-13 Thread Rene Veerman
Hi. When an jQuery.ajax({}) request completes, the success handler fires and i am returned the ajax jquery object. But the 'data' member is always url-encoded, the individual members of 'data' are no longer accessible without manual de-url-coding. Is this intentional? I need my hands back on all

[jQuery] weird DOM/JQ error; elements do not get added/animated

2008-05-05 Thread Rene Veerman
I've got bit of a firefox mystery here: My photo-album component animates when browsing to the next page, see http://mediabeez.veerman.ws/mediaBeez/ and press the 'next' button (thats the one on the right) on the photoalbum you view on that homepage. You have to use firefox to test this

[jQuery] Re: ie still stalling at html rewrite

2008-04-23 Thread Rene Veerman
I'd like to see how you call up the jquery code.. Did you try inserting an alert() at the top of your jquery statements? On Tue, Apr 22, 2008 at 7:00 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I hope someone more experienced can tell me where I'm going wrong with this? I have PHP

[jQuery] Re: IE debugging advice, please

2008-04-21 Thread Rene Veerman
Besides using a stub for console.log and alert()s in many simple debugging cases, i also use: Microsoft script debugger - general debugger. will work fine with non-minified source code. must be enabled in advanced options of IE

[jQuery] Re: should be using .find . . .

2008-04-21 Thread Rene Veerman
show us the source :) On Mon, Apr 21, 2008 at 7:22 AM, hubbs [EMAIL PROTECTED] wrote: Sorry, not sure how I started a new topic... I am trying to use the ajax POST and GET function, and at the same time, use .find to filter the results so I only return a div with a specific ID. I have

[jQuery] Re: IE debugging advice, please

2008-04-21 Thread Rene Veerman
I forgot my latest clue-source for CSS problems: http://www.ieinspector.com/dominspector/index.html not as usefull as firebug, and not free (trialware), but usefull nonetheless.

[jQuery] ?? howto code a plugin that needs to call itself from global scope (setTimeout())

2008-04-21 Thread Rene Veerman
Hi. I'm working on a lgpl-ed button animation plugin that needs a reference in the global scope, so that it can call its own functions through a setTimeout() (animations). See http://mediabeez.ws/mediaBeez/permalink.php?tag=buttonAnimated I've started by working from the datePicker plugin code,

[jQuery] question about plugin programming

2008-04-19 Thread Rene Veerman
Hi. I've created a button jquery plugin that does a png animation onhover, and takes text on the button from html/dom. Although i've modelled the code after the datePicker plugin, and it works, i think i have a problem with scope. When I instantiate buttons in two different windows, a click in

[jQuery] weird error in globalEval

2008-04-13 Thread Rene Veerman
In IE (but not in firefox) i suddenly got a 'fatal' error in globalEval; wrong argument passed in the last line, that says head.removeChild (script).. In order to get things working again, i've had to make a small workaround; globalEval: function( data ) { data = jQuery.trim( data );

[jQuery] released: jQuery plugin buttonAnimated v1.0 - PNG animations onHover

2008-04-13 Thread Rene Veerman
I thought it would be nice to have buttons on my websites without the need for photoshopping every time i need a different text on my button. Since i would use a PNG template button to overlay text on, I added the possibility to do animations onHover.. You can check it out at