[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Salvatore FUSTO
If you use aptana and it's air plugin, it can directly include the jquery library when compling the project; if you define a simple app with an application sandbox , an ajax call $(#myDiv).load(myUrl) invoked by $(document).ready() should work. salvatore - Original Message - From:

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
Thanks Salvatore, I'll give Aptana another try - though I'm much more of a straight text editor user (and I have many macro's already defined for UltraEdit which is what I use mostly). For the general user though, a plain text tutorial (with no extra downloads required - apart from AIR/sdk and

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Salvatore FUSTO
when you end editing your code, made with aptana, ultraedit, pencil and paper ect, you have to assemble the application and generate the air installer: air has a plugin for this salvatore - Original Message - From: Dave Probert [EMAIL PROTECTED] To: jQuery (English)

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Mike Alsup
Might be a good time for Rey or someone to do a simple tutorial page ;) (I would do one - if I could get it to work!) Here's a trivial example: html head script type=text/javascript src=AIRAliases.js/script script type=text/javascript src=AIRIntrospector.js/script script

[jQuery] tabs custom animation

2008-03-02 Thread Jeroen Coumans
Hi, I have a page with tabs that all have different heights (they're images, actually). Switching them causes the text to reflow or 'jump', which isn't a nice effect. Is it possible to create a custom animation for tabs which animates from the current dimensions of a tab to the new dimensions?

[jQuery] Re: blockUI, select box and IE6

2008-03-02 Thread Jack Killpatrick
ooof, yes, I meant when the block is removed, the select box _appears_. Thanks for catching that, and for the explanation. I think you're essentially saying that blockUI is setting the opacity of the iframe to something other than 100%, so the select box disappears? Any known workaround? -

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
Hi Guys, I've just installed Aptana with the AIR plugin. Nice program - better than when I previously tried it. The generated AIR project test file works fine as an AIR app, but modifying it just slightly to have jQuery.1.2.3 used and adding this code (below) to the auto-created

[jQuery] Re: Uploader 0.9 beta

2008-03-02 Thread Gilles (Webunity)
Plugin will be ready in 2 to 3 weeks, have some seminars i have to attend, sorry. --- Gilles

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
Hi Guys (again!), Tracked down the 'permission denied' part - I forgot to set the 'sandboxRoot' in the iframe to 'http://localhost/'. That stopped the error message, but now I get nothing! Nothing at all - no errors, no div content change, nothing. I tested that jQuery is actually working by

[jQuery] Re: Treeview with checkboxes

2008-03-02 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: I'm using a jquery.treeview as an input device. So I have nodes rendering using li class=closedspan class=folderinput ...type=checkbox value=32 /DisplayName/span This works fine *except* that a click on the checkbox also falls into the hit area, so checking or

[jQuery] Re: Treeview with checkboxes

2008-03-02 Thread Jeffrey Kretz
Would returning false on the event for the checkbox cancel the click event from bubbling up to its parent? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Sunday, March 02, 2008 12:38 PM To: jquery-en@googlegroups.com

[jQuery] UI Datepicker: how do i run custom event when month/year changes

2008-03-02 Thread MorningZ
For the life of me, I cannot figure out how to run my own event (in addition to the events to change the calendar) when someone presses prev, next, or changes either the month or year select items Any pointers? I have already tried like $(.datepicker_prev a).bind(click, MyEvent); but it

[jQuery] dblclick function bind and content selection

2008-03-02 Thread guillaume sempé
Hello, I have a function binded on dblClick event of a DIV. When user dblclick on the DIV its content is selected and my function is executed. Is there any solution to avoid content selection on dlbclick ? Thank you. Guillaume.

[jQuery] Re: Superfish animation problem in ie

2008-03-02 Thread slooodge
Hi Joel, sorry for stealing this thread... I seem to have a very similar Problem, but I have read this thread over and over again and still don't get it right. I have used superfish in two different navigations on the same page. Here's the page http://www.eyeculture.de. Everything works fine in

[jQuery] How to avoid Double click content selection and click event

2008-03-02 Thread guillaume sempé
Hello, In my design i would like to bind a funtion on dblclick event. My problem is when i double click on the div with the function binded its content is selected. Is there any solution to avoid the div content selection ? My second problem is also with the dblclick event. On the previous div

[jQuery] Flickering in fadeIn, fadeOut functions.

2008-03-02 Thread Pedro
Hi.. I use this method to show the submenus of every button, here u can see a preview in this link http://64.224.178.181/2/home_page.htm anyway, ull notice how the flickering occurs if you move fast ! i set all the submenus with one comon class (buttons), and each submenu items, like for example

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Thanks for the replies on this. Unfortunately changing the URL doesn't make a difference. I've tried using the absolute path and tried just adding a starting slash. Another wierd thing is that it works on this page: http://www.pamelaneil.co.uk/index.php?option=com_contenttask=viewid=13Itemid=33

[jQuery] Re: How to add unique options to select?

2008-03-02 Thread zephyr
Ok, I found it: $(xml).find('province').each(function(){ if($(select +/[EMAIL PROTECTED]+$(this).attr('id')+])){ select.append(option value=+$(this).attr('id')++$ (this).attr('name')+/option); } should be $(province,xml).each(function(){ if($(select

[jQuery] identify tables with same ID ( duplicate ids)

2008-03-02 Thread Samant
hi, I have 2 questions here for the group.. 1. Does Jquery have native functions or lib or plugins to support conversion of HTML Table data into XML string ( which can then be sent via AJAX to server for getting a respone) ? 2. If my html page has tables with same ID , how can i obtain a

[jQuery] unbinding ajaxXXX events

2008-03-02 Thread grosser.michael
i could not find any example doing this and digging thorugh the source i hit a dead end somewhere at jQuery.data($.fn, events) is it possible to remove a ajaxXXX(send/start/success...) that is once bound ? (with regular unbind etc callbacks ?) mg

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Turns out this error was being caused by Joomla!. The Email Cloaking Mambot was inserting javascript that was breaking everything. Turning the Mambot off has solved the problem. On Mar 1, 5:55 pm, Michael Ray [EMAIL PROTECTED] wrote: Try not to use absolute paths whenever you can. Try putting a

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Changing the URLs didn't work. And the error only happens on pages where there is no scroll bar, for example this page (with a scrollbar) works: http://www.pamelaneil.co.uk/index.php?option=com_contenttask=viewid=13Itemid=33 On Mar 1, 5:55 pm, Michael Ray [EMAIL PROTECTED] wrote: Try not to

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Unfortunately changing the paths doesn't seem to make a difference. And I've noticed it's only happening on pages where the scrollbar shouldn't be displayed. For example this page works because the text is too big for the container div and needs scrollbars:

[jQuery] Using Toggle for Form hints?

2008-03-02 Thread Autocrat
Hi folks. I would like to make my forms a little more functional - by having some instruction text that can be toggled visible/invisible. - - - - - - - - - - - - - - - - - - - - - - - - - I have the following code; script type=text/javascript $(document).ready(function(){ $('.noshow').hide();

[jQuery] Using jQuery without ready()

2008-03-02 Thread fetis
Hi, all. I often use jQuery outside ready() function. Like this div id=asome html/div script $(#a).some actions /script Have this way some hidden troubles or it's ok such using?

[jQuery] Context Menu plugin - id of clicked element

2008-03-02 Thread Benster
Hi, Im new to jquery and im struggling with hopefully a simple question! Im using the Context Menu plugin - http://www.trendskitchens.co.nz/jquery/contextmenu/ which allows you to generate a right-click menu. All works fine, however im now trying to pass in the id of the item that has been

[jQuery] Using slideDown in a table

2008-03-02 Thread crazyryan
Hey Sorry if this is a totally stupid post, but I have never used javascript before in my scripts. I was looking for a slidedown effect and came accross jquery and I have to say, it's actually amazing that the effects are all there to use. However I'm clueless how to use it. Basically, I have

[jQuery] Re: Treeview with checkboxes

2008-03-02 Thread Autocrat
::: Apologies ::: Testing to see if my post appears.

[jQuery] Re: How do I make an inline anchor link slowly scroll down?

2008-03-02 Thread Michael Ray
Thanks for pointing me in the right direction. I am tryign to use LocalScroll but it doesn't want to work. I included 'jquery.scrollTo.js' and 'jquery.localscroll-1.2.4.js' in my head Here is the code script type=text/javascript $(document).ready(function(){ $(#Cont).localScroll(); });

[jQuery] Re: Treeview with checkboxes

2008-03-02 Thread [EMAIL PROTECTED]
Patch works perfectly for my needs. Thanks. Mike

[jQuery] Re: problem with tablesorter plugin

2008-03-02 Thread Joel Newkirk
I recently addressed the same need with the following code: $(.listtable).tablesorter(); $(.listtable).bind(sortStart,function() { $(#busybar).fadeIn(400); }).bind(sortEnd,function() { $(.listtable tr:odd).removeClass(alterow); $(.listtable tr:even).addClass(alterow);

[jQuery] Can not get simple post snippet to work NEWB

2008-03-02 Thread leotemp
$(document).ready(function() { $.post(check.pin.php, [uid: 1], foobar); } function foobar() { alert(works); } Returns missing } after element list can anyone point out to me whats wrong?

[jQuery] Will this post work?

2008-03-02 Thread Autocrat
Test

[jQuery] Can JQuery do a slider/button like on yui?

2008-03-02 Thread otherjohn
Hi, I would like to make a form input field that has a button attached to the side, in-which when the button is clicked, a slider bar appears for a user to slide and change the number value in the form. Basically, I am looking for something like this:http://

[jQuery] why jQuery?

2008-03-02 Thread zok
Hey, what is going to have the best future: jQuery or Prototype (scriptaculous)? Maybe you can tell me a few differences and/or reasons for your joice... Regards, zok

[jQuery] jQuery in Action

2008-03-02 Thread Joe
So I got this book this past Friday and was like a little kid on Christmas eve. I've been going through the first few chapters and this is clearly one of the most thorough and comprehensive books on jQuery and its functionality. I started using jQuery about 3 weeks ago and am totally hooked.

[jQuery] Re: Extending jQuery

2008-03-02 Thread Michael Ray
I think there's a wysiwyg editor being worked on in the development trunk. You should look into whats going on with it and be a major contributer to it! On Wed, Feb 20, 2008 at 10:20 AM, Alan Gutierrez [EMAIL PROTECTED] wrote: I want to learn the ins and outs of jQuery by writing a WYSIWYG

[jQuery] value attribute update problem

2008-03-02 Thread Otomar
Hello Little problem with value attribute I have some input element where I try to update attributes. Input element before jQuery code: input type=text name=test value= testparam= maxlength=10 size=10 / jQuery code: $(input[name='test']).attr(value,test123);

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Turns out this error was being caused by Joomla!. The Email Cloaking Mambot was inserting javascript that was breaking everything. Turning the Mambot off has solved the problem. On Feb 29, 12:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I need some help with a website I have recently

[jQuery] yet another xml question

2008-03-02 Thread eanoroom
hi, i believe this is an easy one, but i cannot get my head around it... i have a sample xml file: projects project namefirst/name prodfirst/prod agfirst/ag dirfirst/dir date03/25/2008/date statusproduction/status /project /projects $(function() { //$('#update-target

[jQuery] Re: How do I make an inline anchor link slowly scroll down?

2008-03-02 Thread Michael Ray
Firebug is spitting out this error: $.scrollTo has no properties scroll(Object type=click target=a currentTarget=a eventPhase=2, acalendar#test, Object duration=1000 axis=y event=click stop=true)jquery.localscrol... (line 86) (no name)(Object type=click target=a currentTarget=a eventPhase=2)

[jQuery] trigger click in a hyperlink

2008-03-02 Thread MrViSiOn
Hi: Is it possible to do a trigger with a hyperlink? Tanks

[jQuery] Need to slide a Div containing an image so that it is always on the screen as the user browses a gallery containing many thumbnails

2008-03-02 Thread quirksmode
Hi, I am building this website for a client (http://www.melaniepotro.com/ collection.html) and the collection section features many photos. At the moment when a user clicks on a thumbnail the screen suddenly jumps to the top so that the main image can be displayed. This is very annoying for the

[jQuery] Problems with .load

2008-03-02 Thread MoRtYMer
Hi, I'm new to jQuery and I'm having some problems, so I turn to the pros. I try to do an ajax submit, that for example erase an entry from a database, all goes well, but when I use $ ('#employees').load(empinc.php); to reload the employees info, and then try to use another .click event, to

[jQuery] Re: barack obama website uses Jquery

2008-03-02 Thread Uwe C. Schroeder
Well, since he's spending millions for flyers most people throw away, he really should donate a couple bucks to the JQuery project ... 50 grand would go a long way I guess :-) On Saturday 01 March 2008, Rey Bango wrote: Yep. The site has been using it since day one which was awesome! Thanks

[jQuery] Re: Can JQuery do a slider/button like on yui?

2008-03-02 Thread MorningZ
UI slider would do that: http://docs.jquery.com/UI/Slider To be just like the YUI example, you'd hide the slider, show it when one clicks a button, wire the slide event and change the opacity/ button text On Mar 2, 9:11 pm, otherjohn [EMAIL PROTECTED] wrote: Hi, I would like to make a

[jQuery] Re: jQuery in Action

2008-03-02 Thread MorningZ
Thoughts? There's at least 4 to 5 topics so far with thoughts about this book :-)

[jQuery] Re: identify tables with same ID ( duplicate ids)

2008-03-02 Thread Karl Rudd
1. Not that I know of. 2. Try: $('table[id=Instructions]') Karl Rudd On Mon, Mar 3, 2008 at 6:32 AM, Samant [EMAIL PROTECTED] wrote: hi, I have 2 questions here for the group.. 1. Does Jquery have native functions or lib or plugins to support conversion of HTML Table data

[jQuery] Re: Tablesorter 2.0.1 with pagination plugin trigger(update) problem.

2008-03-02 Thread LastGrunger
This is quick and dirty hack I have to use. // remove old sortable ^^ $('body').find(table.sortable colgroup).remove(); // create new ^^ $('body').find(table.sortable).tablesorter( { widthFixed: true, widgets: ['zebra']} ).tablesorterPager( { container: $(#pager) } ); If anyone

[jQuery] Re: Tablesorter 2.0.1 with pagination plugin trigger(update) problem.

2008-03-02 Thread LastGrunger
+ $(#pager *).unbind('click');

[jQuery] Re: trigger click in a hyperlink

2008-03-02 Thread Karl Rudd
Do you mean something like $('a#somelink').click()? No, that's not possible. But you can simulate it. You could do something like: window.location = $(a#somelink').attr('href'); Karl Rudd On Mon, Mar 3, 2008 at 2:31 AM, MrViSiOn [EMAIL PROTECTED] wrote: Hi: Is it possible to do a

[jQuery] Re: why jQuery?

2008-03-02 Thread Shawn
First, I think that only YOU can make that choice for yourself. Each developer has their own techniques/styles. We can't make judgements to match your environment or habits :) Next, I think both have a future because they serve slightly different needs and audiences. (IMO). jQuery

[jQuery] Re: why jQuery?

2008-03-02 Thread Sam Sherlock
As someone who finds javascript real difficult at times I have tried both sine prototype was all the rage at one time I found it really tricky and never got to flight with it. Later I tried jQuery I made a lot of progress very quickly I have been spurred on, still at times fumbling but I am

[jQuery] Re: Superfish animation problem in ie

2008-03-02 Thread Joel Birch
This is strange: everything works fine for me in all browsers (except that in IE6 the bottom nav doesn't show above the iframe generated by the bgIframe plugin - it is a white with the word 'false' in it). IE7 on Win XP works perfect for me :/ I noticed you are including hoverIntent twice. It is

[jQuery] Re: Need to slide a Div containing an image so that it is always on the screen as the user browses a gallery containing many thumbnails

2008-03-02 Thread Karl Swedberg
On Mar 2, 2008, at 1:48 PM, quirksmode wrote: Hi, Hi Dave. I am building this website for a client (http://www.melaniepotro.com/ collection.html) and the collection section features many photos. At the moment when a user clicks on a thumbnail the screen suddenly jumps to the top so that

[jQuery] Re: Can not get simple post snippet to work NEWB

2008-03-02 Thread Karl Swedberg
Looks like you need a closing parenthesis for your document.ready: $(document).ready(function() { $.post(check.pin.php, [uid: 1], foobar); }); // -- need the closing paren and semicolon here function foobar() { alert(works);

[jQuery] Function overriding

2008-03-02 Thread howa
Consider I have a simple plugin, e.g. jQuery.example = function(name) { sayHello = function(str) { alert(jQuery.example.sayHello: + str); }; sayHello(name); }; at sometime later, I would want to override the original sayHello method(), so I add,