[jQuery] Re: jquery + tinymce

2008-06-28 Thread Salvatore FUSTO
yes, mce and jquery works fine together, in HTML page: if i have an html page, ie mypage.html, it runs correctly, but if i have the same page as a cfm one, ie mypage.cfm, and i try to view it writing in address bar of my browser: http://localhost:8500/views/mypage.cfm i get that errors as

[jQuery] Re: jquery + tinymce

2008-06-28 Thread Salvatore FUSTO
just noted: if i use an older version of the editor, 1.240, all is ok. any suggestion? salvatore - Original Message - From: Salvatore FUSTO To: jquery-en@googlegroups.com Sent: Saturday, June 28, 2008 10:13 AM Subject: [jQuery] Re: jquery + tinymce yes, mce and jquery

[jQuery] Re: Firefox 3 help

2008-06-28 Thread Alexandre Plennevaux
works fine here (winXP SP3, FF3) Alexandre Plennevaux ** On Sat, Jun 28, 2008 at 12:18 AM, daveJay [EMAIL PROTECTED] wrote: I seem to be at a loss I'm trying to run this code right here: $(#image img).fadeTo(500,0,function() { $(#image img).attr({src : imgSrcNext});

[jQuery] Array Intersection or union

2008-06-28 Thread Mike
Are there any plug ins for union or intersection of arrays?

[jQuery] Drag Scroll

2008-06-28 Thread Riley
How can I setup a jquery like this... http://jdsharp.us/jQuery/plugins/AutoScroll/ but with no modifier key, just purely scrolls on mouse moving to edge any takers?

[jQuery] Is it possible to fade images partially?

2008-06-28 Thread Cristian
I'd like to know if it is possible to apply the fadeOut function to an element, but just partially, so that the element looks transparent (like a disabled button). I've been looking in the tutorials section of jQuery's official site and in Google, but I haven't found anything about it. Is it

[jQuery] Re: jquery + tinymce

2008-06-28 Thread Mickster
Hmm do you use document.domain anywhere in your code? I think that messed it up for me... I used to load tinyMCE on different subdomains, but with only one installation of Tiny, but I changed to one domain and removed the document.domain... Maybe that can give you a clue... Try posting a

[jQuery] Trouble loading an HTML page after animation is completed

2008-06-28 Thread Jason
Hello! Here is my setup: I want to click my link, have the content box animate to the proper width, and then have my HTML page appear once the animation is completed. In the snipped below, the content of the HTML pages loads before the animation is complete. How do I make this work?

[jQuery] Re: [autocomplete] Display a busy indicator?

2008-06-28 Thread Jörn Zaefferer
A class ac_loading is added to the input while the request is active. You can use that to put a loading-gif as a background image to the input. Jörn On Fri, Jun 27, 2008 at 10:16 PM, Felix Schwarz [EMAIL PROTECTED] wrote: Hi, I use the autocomplete script from

[jQuery] Re: Is it possible to fade images partially?

2008-06-28 Thread Richard D. Worth
In addition to fadeOut there is a fadeTo function: $(img).fadeTo(slow, 0.5) See http://docs.jquery.com/Effects/fadeTo#speedopacitycallback for mode details - Richard Richard D. Worth http://rdworth.org/ On Sat, Jun 28, 2008 at 2:43 AM, Cristian [EMAIL PROTECTED] wrote: I'd like to know

[jQuery] determine if form still under focus

2008-06-28 Thread C. Feldmann
Hello! I have bumped into a problem that I have been trying to solver for hours now, without any sign of hope. I have a form which is loaded into a div through an ajax call. I would like to hide the form again as soon as the focus is lost. The form consists of inputs, textareas and selects. I

[jQuery] [tablesorter] Problem With Parser

2008-06-28 Thread doof92
Hey, I've written a simple parser which turns words into numbers to make it sort in a specific order. Simple enough. However, I've added an extra bit onto the end - so it appears now like - reasonable (3,2). That (3,2) is preventing it from working correctly. Is it possible to put a wildcard in

[jQuery] Re: Trouble loading an HTML page after animation is completed

2008-06-28 Thread Richard D. Worth
jQuery functions that take some time to run (animate, load, ajax) always accept an optional final parameter (a callback) to be executed when it's done. Also the context (thisArg) is always the original element. So, in your case: $(#link).click(function(){ $(#contentbox).animate({width: 550px},

[jQuery] Re: Firefox (23) does not render new content on .append(val) and .html(val)

2008-06-28 Thread c2h5oh
On 26 Cze, 23:31, Alexandre Plennevaux [EMAIL PROTECTED] wrote: and if the injected html is completely valid it works ? Yes, if it is 100% valid it works just fine. If there is ANY invalid html ANYWHERE in the inserted string, whole string will not be shown/rendered, even if the same string

[jQuery] Problems with accordion plug in

2008-06-28 Thread kirstyburgoine
Hi, I'm having a few problems with the accordion plugin. When the page loads it automatically adds the class 'selected' to all my links. It shouldn't do this until I click on a link. Once you click on a link the plugin works as it should do except for the arrow buttons don't change. Can someone

[jQuery] Re: Is it possible to fade images partially?

2008-06-28 Thread Dan G. Switzer, II
I'd like to know if it is possible to apply the fadeOut function to an element, but just partially, so that the element looks transparent (like a disabled button). I've been looking in the tutorials section of jQuery's official site and in Google, but I haven't found anything about it. Is it

[jQuery] Re: Array Intersection or union

2008-06-28 Thread Karl Swedberg
Also, jQuery has a few array methods in the core: http://docs.jquery.com/Utilities So, like Klaus said, you probably don't need a plugin. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 28, 2008, at 10:52 AM, Klaus Hartl wrote: I don't think you

[jQuery] Re: determine if form still under focus

2008-06-28 Thread Brian J. Fink
Can you supply some code? On Jun 28, 6:34 am, C. Feldmann [EMAIL PROTECTED] wrote: Hello! I have bumped into a problem that I have been trying to solver for hours now, without any sign of hope. I have a form which is loaded into a div through an ajax call. I would like to hide the form

[jQuery] Caching in jquery autosuggest

2008-06-28 Thread uweheldt
Hi there, we are developing some autosuggest features for a website and using the query autosuggest plugin. No question about the plugin itself. What do you think about server side caching within the suggest functions? Is this useful? I thought abaout a MRU on the server side. But wont the cache

[jQuery] Re: Replace not a function with Regular Expression

2008-06-28 Thread Brian J. Fink
You quoted match, not replace. Is this the code that caused the error? If it is, replace the word match in your code with the word replace; otherwise, repost with the code that generated the error. In any event, match() takes only one argument and returns an array of String objects, whereas

[jQuery] Re: Display a busy indicator?

2008-06-28 Thread Brian J. Fink
$('body').css('cursor','wait'); On Jun 27, 11:19 am, Felix Schwarz [EMAIL PROTECTED] wrote: Hi, I use the autocomplete script fromhttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ There is something I could not figure out: Is it possible to show an busy indicator while the

[jQuery] Re: jtemplates performance

2008-06-28 Thread Andiih
For some reason my VPN is moody this weekend and I can't get in to play :-) . I agree the JavaScriptTemplates looks close enough to be a search/replace type fix. I will try the static textarea approach 1st though: Although I like the separation of elements that the external files give me. Of

[jQuery] Re: determine if form still under focus

2008-06-28 Thread markus.staab
maybe you should use the onmouseout event handler On 28 Jun., 12:34, C. Feldmann [EMAIL PROTECTED] wrote: Hello! I have bumped into a problem that I have been trying to solver for hours now, without any sign of hope. I have a form which is loaded into a div through an ajax call. I would

[jQuery] How to return to vertical position of DIV?

2008-06-28 Thread RikahsDesign
Here's my dilema... On the following website: http://akcollectables.com/store/index.php?act=viewCatcatId=2 ...users vertically scrolling down to see the items for sale (the big images). After a user clicks on the image of a particular item they are taken to that item's product details page.

[jQuery] positioning a slidedown div under an existing menu

2008-06-28 Thread [EMAIL PROTECTED]
Hello! Sorry for the what I assume is an easy question but I am stuck. What I'm working with is an existing single row table-driven top nav bar and what I need to do is add a sub menu under one of the menu items (which is the third table cell in if that helps). My thought was to just create a

[jQuery] Re: Is it possible to fade images partially?

2008-06-28 Thread Cristian
Thank you very much Richard On 28 jun, 04:55, Richard D. Worth [EMAIL PROTECTED] wrote: In addition to fadeOut there is a fadeTo function: $(img).fadeTo(slow, 0.5) See http://docs.jquery.com/Effects/fadeTo#speedopacitycallback for mode details - Richard Richard D.

[jQuery] Re: Dialog Functional Demo Miss Linked

2008-06-28 Thread Richard D. Worth
This is now fixed with the 1.5.1 release. Thanks. - Richard On Fri, Jun 13, 2008 at 4:39 PM, Dan [EMAIL PROTECTED] wrote: The jQuery UI - Functional demo for the dialog is missed linked or something. The URL is http://ui.jquery.com/functional_demos/#ui.dialog Yet there are demos for dialog

[jQuery] Re: Firefox (23) does not render new content on .append(val) and .html(val)

2008-06-28 Thread Alexandre Plennevaux
well, can one actually qualify the fact that firefox doesn't like invalid html as a bug ? pretty radical, but maybe not a bad thing for us developers. it forces us to clean up our html. Alexandre On Sat, Jun 28, 2008 at 1:44 PM, c2h5oh [EMAIL PROTECTED] wrote: On 26 Cze, 23:31, Alexandre

[jQuery] Re: Firefox 3 help

2008-06-28 Thread daveJay
I've got to say I'm extremely unhappy with Firefox for mac. It's totally screwing up this site and making my life a nightmare. Internet Explorer 6 gets the dissolve down perfectly, it gets everything else wrong, but at least it can handle a simple dissolve, but not Firefox for mac, it makes no

[jQuery] Do something 3 times

2008-06-28 Thread jlhall
I am using jquery to parse an xml file. It gets the date, title and link from a Blogger rss. I have it working but I want it to only do the loop 3 times so it gets the 3 most recent posts. The way this would work in regular javascript: for (i=0;i=2;i++) { // do some stuff } Here's my code:

[jQuery] Re: Concern: quality of plugin library submissions

2008-06-28 Thread Nathan Bubna
I like the way Mozilla handles their Add-ons site. They recommend a certain number for each category, put main recommendations on the front page for those categories under a very prominent search box, and then offer links to browse all add ons by popularity, rating, last updated, or all

[jQuery] Re: Replace not a function with Regular Expression

2008-06-28 Thread parrfolio
Thanks for the help. It seems this worked: var regexp = /_m\.jpg/g; $.each(data.items, function(i,item) { $(img/).attr(src, item.media.m.replace(regexp, '.jpg')).appendTo(#images).fadeTo(1800, 1.0); if ( i

[jQuery] Re: X_REQUESTED_WITH ie6

2008-06-28 Thread Ken Gregg
This may not be an IE6 problem. I have two pages. One page the header shows up in php, the other page it doesn't. Using FF3, live headers and firebug both say the header is sent. I haven't tried tracking it down yet. Cold be some strange bug somewhere between the browser and php. Of course,

[jQuery] add new row to table

2008-06-28 Thread ktpmm5
I've read all the other info about adding a row to a table and I just can't get it to work. I've got my dialog popping up with two buttons. When the user clicks Volunteer, I want an empty row to appear at the bottom of my table and the Volunteer button to change to Save. The user would

[jQuery] Re: Firefox 3 help

2008-06-28 Thread Karl Swedberg
Strange, I just looked at the site on FF3 for Mac, and it worked just fine. Also, those photos are fantastic! --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 28, 2008, at 3:26 PM, daveJay wrote: I've got to say I'm extremely unhappy with Firefox

[jQuery] Re: Do something 3 times

2008-06-28 Thread Karl Swedberg
Hi there, One way you could do this is to use the .each() method's index parameter. Then, you could check the index before doing anything inside the callback function: $(xml).find('item').each(function(index){ if (index 3) { // do all the

[jQuery] Re: determine if form still under focus

2008-06-28 Thread Michael Geary
Yeah, there is a bit more to this, as I found out when I got curious and started experimenting with it. :-) I've needed to do this same thing myself, so I wrote a little plugin you may find useful: http://mg.to/jquery/focuswatch/ Let me know if that is something like what you're looking for. I

[jQuery] Re: add new row to table

2008-06-28 Thread Richard D. Worth
I think all you need to do is change buttons: { 'Volunteer': function() { onclick=add() }, 'Cancel': function() { ... } } to //anonymous function (callback) which calls the add function buttons: { 'Volunteer': function() { add(); }, 'Cancel': function() { ... } } or

[jQuery] Re: Do something 3 times

2008-06-28 Thread jlhall
It helped indeed! Thanks Karl! On Jun 28, 3:32 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi there, One way you could do this is to use the .each() method's index   parameter. Then, you could check the index before doing anything   inside the callback function:        

[jQuery] Don't redirect on form submit

2008-06-28 Thread Sid
Hi, I've got a comments page that I load within a div. On clicking the Submit button, my page redirects to the php file that I submit to. Now since my site uses only one page which acts as the front-end with all sub-pages being loaded into a content div, i don't want the redirection happening.

[jQuery] How to determine when an element finishes rendering?

2008-06-28 Thread sircastor
I'm working on a page for my company that allows us to edit information in page, and then write that page out to a file (or a database, or whatever). The process we have right now is as follows: The html in the 'editor' section gets copied out to a hidden element. Undesirables are removed from

[jQuery] Re: Firefox 3 help

2008-06-28 Thread Joel Birch
Works great for me on Mac FF3 also. Love the way the gallery works - the way it scales the images and presents them without resorting to lightbox-style. I agree with Karl about the photos too, they are really enthralling. Joel Birch.

[jQuery] Re: Don't redirect on form submit

2008-06-28 Thread Bil Corry
Sid wrote on 6/28/2008 8:31 PM: What I basically want to achieve is that on clicking the submit button, the data is posted to the php file without any noticeable difference happening to my page. The response etc will be taken care of by my code. Any ideas? If you submit the request via XHR,

[jQuery] Re: Validate plugin: RFC2822 compliant emails

2008-06-28 Thread Bil Corry
Scott González wrote on 6/27/2008 6:51 AM: No problem. The interesting thing is that the more you comply with the RFC, the more likely you are to allow someone to accidentally enter an incorrect email address. Jan Goyvaerts does a great job of explaining the issues surrounding validating