[jQuery] Re: ajaxSubmit target append possible

2007-05-09 Thread juliandormon
Awesome that works. Perhaps you can help with this now :-) My ajax is returning a div with an id but I do not know what it is as it is generated by our DB. I do know it's class and I do know that it is the first div with that class because I prepend it to the existing data. I need to find this

[jQuery] A jQuery article on sitepoint

2007-05-09 Thread David Duymelinck
http://www.sitepoint.com/article/ajax-jquery With a nice introduction and clear examples to make a chat application. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: PeriodicalExecutor or $.executeEach

2007-05-09 Thread Емил Иванов / Emil Ivanov
Actually, you are right. After some searching I found a nice Scheduler plugin. http://trainofthoughts.org/blog/2007/02/15/jquery-plugin-scheduler/ And download: http://trainofthoughts.org/repo/getfile?f=jquery/jquery.schedule.js On 08/05/07, Gilles (Webunity) [EMAIL PROTECTED] wrote:

[jQuery] attr(style vs css(

2007-05-09 Thread Bil Corry
In IE7, this doesn't work on an img element (and possibly others, didn't test it): $(.pics).attr(style,border-style: solid; border-width: 1px; border-color: white;); But this does work for IE7: $(.pics).css(border-style,solid).css(border-width,1px).css(border-color,white);

[jQuery] .load external page by url

2007-05-09 Thread Massimiliano Marini
Hi all, is possible to load an external page with the .load()? something like this: example : $('#mydiv').load('http://www.jquery.com/'); naturally this script not work, thanks for the helps -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ It's easier to invent the

[jQuery] AW: [jQuery] Re: MooTools 1.1

2007-05-09 Thread r.b
I'm sorry but what do you see on these Demo Pages what does not be realized with jQuery ? I can't find any freaking awesome stuff. Someone may blame me, but i.e. interface plugin does atleast 95% of these effects alone, plus some really nice effects on top ! Greets Ralf -Ursprüngliche

[jQuery] Re: attr(style vs css(

2007-05-09 Thread Erik Beeson
Not sure about expected behavior, but the CSS version certainly seems more correct to me. It could be shortened to: $(.pics).css({borderStyle:solid, borderWidth:1px, borderColor:white}); Or really, in that specific case: $(.pics).css(border, 1px solid white); If you find yourself adding (and

[jQuery] Referring to each form element

2007-05-09 Thread c19h28o2
Hi, I have a textbox in Visual Studio 2003 with the following code $(document).ready(function(){ $(#Form1 :text).hide(); $(.article .thebody).hide(); $(#container .article ul) .prepend(li class='readbody'a href='' title='Read the article'Read Body/a/li);

[jQuery] toggleClass and {required:true}

2007-05-09 Thread Luc Pestille
Hi, I'm using Jörn Zaefferer's Validation plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-validation/ ), which to use you add a class {required:true} to each field you need validated (at it's most basic). However, because of some dynamic dropdowns in my forms, I need to toggle that

[jQuery] Re: Referring to each form element

2007-05-09 Thread c19h28o2
On May 9, 11:01 am, c19h28o2 [EMAIL PROTECTED] wrote: Hi, I have a textbox in Visual Studio 2003 with the following code $(document).ready(function(){ $(#Form1 :text).hide(); $(.article .thebody).hide(); $(#container .article ul) .prepend(li class='readbody'a

[jQuery] Re: find() - Weird behavior

2007-05-09 Thread cesare
It would probably be simpler to do this (untested): $(item).each(function() { var pictureTitle = $(this).find(title).eq(0).text(); var pictureUrl = $(this).find(link).eq(0).text(); // ... }); Thanks! Experimenting I solved with a: var

[jQuery] Re: LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-09 Thread Paulo Gabriel Antunes
hey! are you still there? could you help me please?

[jQuery] Re: Form plugin shows just result

2007-05-09 Thread Mike Alsup
Both pages have the same problem with this line: $('#kontakt_formular').ajaxForm (function() {alert (data[0]? 'success': 'failure')}); 'data' is undefined here. If you bind a function to ajaxError you should see an error. You need to define 'data' as an argument to your anon function:

[jQuery] Re: ajaxSubmit target append possible

2007-05-09 Thread Mike Alsup
$('#level1).prepend(data).SortableAddItem($('div.groupItem:eq(0)')); this is returning an object but not the ID. Just tack on attr to your selection. Something like this would probably work: $('#level1').prepend(data).SortableAddItem($('div.groupItem:eq(0)').attr('id')); Mike

[jQuery] Re: MooTools 1.1

2007-05-09 Thread weepy
Jquery could do all this stuff, but I think it's just that moo.oools have a very neatly presented site On May 9, 10:21 am, r.b [EMAIL PROTECTED] wrote: I'm sorry but what do you see on these Demo Pages what does not be realized with jQuery ? I can't find any freaking awesome stuff. Someone

[jQuery] Re: ajaxSubmit target append possible

2007-05-09 Thread juliandormon
Thanks Mike, You Rock! malsup wrote: $('#level1).prepend(data).SortableAddItem($('div.groupItem:eq(0)')); this is returning an object but not the ID. Just tack on attr to your selection. Something like this would probably work:

[jQuery] $(img).attr(title, ${this.src});

2007-05-09 Thread Mario Moura
Hi Folks I am trying $(img).attr(title, ${this.src}); So : $(img).attr(title, ${$($('#myid/.markup02/div/.field-item').siblings().get(1)).text()}); If I insert my function $($('#myid/.markup02/div/.field-item').siblings().get(1)).text() in firebug console I receive my target text but when I

[jQuery] Re: .load external page by url

2007-05-09 Thread Massimiliano Marini
something like this: example : $('#mydiv').load('http://www.jquery.com/'); From the manual : load( String url, Object params, Function callback ) returns jQuery Load HTML from a remote file and inject it into the DOM. for remote file it's meant a file in the same server where is the

[jQuery] $(input).val() throws exception

2007-05-09 Thread Giant Jam Sandwich
I have not checked in IE, but in FF, if you try and set a value for an input to be nothing, i.e. - , then it throws an exception. If you add a single space , then it works just fine. After submitting a form via $.AJAX(), I need to reset the form fields to be empty (nothing in them). Anyone else

[jQuery] Re: $(img).attr(title, ${this.src});

2007-05-09 Thread John Resig
Mario - ${...} doesn't, currently, exist in jQuery. Did you find an example somewhere that showed it as working? (It needs to be fixed.) --John On 5/9/07, Mario Moura [EMAIL PROTECTED] wrote: Hi Folks I am trying $(img).attr(title, ${this.src}); So : $(img).attr(title,

[jQuery] Re: .load external page by url

2007-05-09 Thread Matt Stith
Thats correct, ajax calls cannot retrieve external pages for security reasons. The only way to get external pages onto your page is to use an iframe, or a simple server side proxy that you can call with your ajax. On 5/9/07, Massimiliano Marini [EMAIL PROTECTED] wrote: something like this:

[jQuery] Re: $(img).attr(title, ${this.src});

2007-05-09 Thread Mario Moura
Ok I found here: http://www.visualjquery.com attr(key, value) --- Example But fortunately I found my mistake: Will work like this $($(#myid//img).get(0)).attr(title, $($('#myid/.markup02/div/.field-item').siblings().get(0)).text()); Without ${...} Regards Mario 2007/5/9, John Resig

[jQuery] Re: $(img).attr(title, ${this.src});

2007-05-09 Thread Mario Moura
Now I see you John Resig. I feel honored talk with you. Congratulations and tanks for all. Regards Mario 2007/5/9, Mario Moura [EMAIL PROTECTED]: Ok I found here: http://www.visualjquery.com attr(key, value) --- Example But fortunately I found my mistake: Will work like this

[jQuery] Re: $(img).attr(title, ${this.src});

2007-05-09 Thread John Resig
Ha, no problem. Give this piece of code a try: $(#myid img).eq(0).attr(title, $('#myid/.markup02/div/.field-item').siblings().eq(0).text()); The .eq(0) method allows you to avoid wrapping the $(...) again. Hope that helps simplify some of the code. It looks like you might run into performance

[jQuery] Re: New plugin: equalize column heights

2007-05-09 Thread John Resig
Very nice, I know that I could use this in a bunch of my layouts. Silly CSS and your box model. --John On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've posted this to the discussion list once before, but now I've put together a simple demo page for my equalize column heights

[jQuery] Re: .load external page by url

2007-05-09 Thread Massimiliano Marini
Hi Matt, Thats correct, ajax calls cannot retrieve external pages for security reasons. The only way to get external pages onto your page is to use an iframe, or a simple server side proxy that you can call with your ajax. Thanks for your help. -- Massimiliano Marini -

[jQuery] append to a imagemap

2007-05-09 Thread mike
I have an odd issue appending a new area to a map The bold text gets appended but the area does not. script type='text/javascript' src='/javascript/jquery.js'/script script type=text/javascript $(document).ready(function() { $(body).find(map).append('area title=test3 alt=34rewq

[jQuery] Re: $(input).val() throws exception

2007-05-09 Thread Giant Jam Sandwich
Hi John, I'm fairly certain I'm using an older version. I've been working on a project for about 4 months now, and have not updated the version for fear of breaking something. If it's been fixed, then I'll be sure to give a new version a go around though. Thanks. Brian On May 9, 10:21 am,

[jQuery] [bug]removeClass('') removes all classes

2007-05-09 Thread Arrix
$('#id').removeClass(''); In the svn edge version Calling removeClass with an empty string as className will remove all classes. It's expected to remove nothing. The trac is not back yet so I'm reporting bug here. -- Arrix

[jQuery] jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart Batty
In an effort to download the dimensions plugin I've discovered that the svn browser is not working and the link to the plugin on the jQuery site is inaccessible. I understand that there has been some trouble of late so I thought it best to spread the message in the event that these problems are

[jQuery] Re: [bug]removeClass('') removes all classes

2007-05-09 Thread John Resig
No, that's expected. removeClass() was re-worked such that .removeClass(one) would remove one class, .removeClass(one two) would remove two classes, and .removeClass() would remove all classes. This is very similar to how .unbind() works (if you call it with no arguments, it removes all bound

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Karl Swedberg
All of the plugins are available (latest svn version) in this temporary location: http://www.learningjquery.com/src/plugins/ --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 9, 2007, at 12:06 PM, Stuart Batty wrote: In an effort to download the

[jQuery] Re: [bug]removeClass('') removes all classes

2007-05-09 Thread Arrix
The .removeClass() behavior is good. But I don't think .removeClass() should remove every class. Though it doesn't make sense to write .removeClass(), sometimes the parameter passed to .removeClass is a variable $('#someId').removeClass(classToRemove); classToRemove may be set to by previous

[jQuery] JavaScript Text nodes

2007-05-09 Thread Rodney Finn
Can I permanently post a JavaScript text node to a wabpage? Script: window.onload = initAll; var nodeChangingArea; function initAll() { document.getElementsByTagName(form)[0].onsubmit = function() {return nodeChanger();} nodeChangingArea = document.getElementById(modifiable);

[jQuery] using jQuery with multiple libraries

2007-05-09 Thread browntown
I'm currently trying to implement some jQuery functionality into a site that is using other libraries: prototype and YUI to name a few. I'm having problems getting my jquery code to execute properly. I've read the documentation on jquery.com but i'm still receiving the error message:

[jQuery] Re: MooTools 1.1

2007-05-09 Thread Jeffrey Kretz
This is very true. I only use jQuery, but when I've had to explain to someone what jQuery can do, I show them the moo.tools demo link. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Wednesday, May 09, 2007 5:06 AM To: jQuery

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-09 Thread thomasdeater
On May 8, 9:58 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: hmm, what do you get for $('body') or $('html') ?? $('html').parent() = [ Document ] $('body').parent() = [ html ] Nothing unusual here. For now, I've opted for the following: var container = $(settings.container); if

[jQuery] Re: JavaScript Text nodes

2007-05-09 Thread Scott Sauyet
Rodney Finn wrote: Can I permanently post a JavaScript text node to a wabpage? I'm sorry. I don't understand the question. Can you elaborate (and not just with some JS source code)? -- Scott

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
The jQuery subversion repository was moved to Google Code yesterday, so you can reference it there, at least: http://jqueryjs.googlecode.com/svn/ --John On 5/9/07, Karl Swedberg [EMAIL PROTECTED] wrote: All of the plugins are available (latest svn version) in this temporary location:

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Ⓙⓐⓚⓔ
so I change svn co svn://jquery.com/trunk/jquery; to svn co svn://jqueryjs.googlecode.com/svn/trunk/jquery; ? On 5/9/07, John Resig [EMAIL PROTECTED] wrote: The jQuery subversion repository was moved to Google Code yesterday, so you can reference it there, at least:

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-09 Thread Ⓙⓐⓚⓔ
sorry, I meant $('html').parent().parent().size() and $('body').parent().parent().size() I'd guess body is 0 and html would croak... On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On May 8, 9:58 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: hmm, what do you get for $('body') or $('html') ??

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-09 Thread dennis
Jan, thank you so much for your generous work! I started learning jQuery recently, am building a gallery app. I have been gearing up to porting this to jQuery: http://www.dhtmlgoodies.com/scripts/image-slideshow-vertical/image-slideshow-vertical.html It looks like your jCarousel is quite

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
Yep! All the details are updated on the wiki: http://docs.jquery.com/Downloading_jQuery --John On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: so I change svn co svn://jquery.com/trunk/jquery; to svn co svn://jqueryjs.googlecode.com/svn/trunk/jquery; ? On 5/9/07, John Resig [EMAIL PROTECTED]

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Ⓙⓐⓚⓔ
great! now how do I add a ticket?? http://dev.jquery.com/newticket doesn't work! On 5/9/07, John Resig [EMAIL PROTECTED] wrote: Yep! All the details are updated on the wiki: http://docs.jquery.com/Downloading_jQuery --John On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: so I change svn co

[jQuery] Re: New plugin: equalize column heights

2007-05-09 Thread thomasdeater
On May 9, 12:07 pm, Olaf Bosch [EMAIL PROTECTED] wrote: Fine. I found a little mystery ;) give a DIV padding and you see it. try #col1{padding:15px;} Wow, that box model sure is frustrating sometimes ;) I've updated the plugin to handle top/bottom borders/padding (with a couple of

[jQuery] SlideShow Interface

2007-05-09 Thread Mario Moura
Hi Folks Everbody probably know SlideShow from http://interface.eyecon.ro/demos/slideshow.html It is nice but dont have a way to href the caption to something. I am trying but change function dont do what I hope, so probably I am in wrong way. $($(.slideshowCaption

[jQuery] Re: MooTools 1.1

2007-05-09 Thread Sean Catchpole
Ralf, I know that jQuery can do everything that mootools can, and often better. But just because I know doesn't mean other people do. MooTools looks sexy, and jQuery, for the moment being, lacks that. Jeffrey, that's exactly my point. We should have more examples of jQuery's abilities. As I

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
right, I have to get the dev site back up and running - unfortunately, it's a lot of work and I haven't been able to figure all of it out, yet. --John On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: great! now how do I add a ticket?? http://dev.jquery.com/newticket doesn't work! On 5/9/07, John

[jQuery] jquery tabs: How to make the tab contain both text and a small image

2007-05-09 Thread [EMAIL PROTECTED]
Hi, With regards to the plugin (http://stilbuero.de/jquery/tabs/), I want the text of one of my tabs to contain both text and a small, clickable x image on the same line. Is this possible? It seems if I put anything more advanced than div id=container-10 div

[jQuery] Re: MooTools 1.1

2007-05-09 Thread John Resig
I agree completely. Currently, we have a pretty weak selection of demos: http://docs.jquery.com/Demos Sean and Andy - wanna login and flush out the list with what you think would make for good demos? (You don't actually have to build the demos, unless you want to - it'll just help us to get a

[jQuery] Tabs plugin broken with MS patch last night?

2007-05-09 Thread Daemach
I have several machines, dell laptops to be specific, that are not rendering tabs properly after the MS patches last night.The tabs are there, but the tab container is empty. This is happening in both IE 7 and Firefox 2. Is anyone else seeing this behavior?

[jQuery] Re: New plugin: equalize column heights

2007-05-09 Thread Paul Malan
I hope you won't mind that I didn't experiment to learn this answer for myself, but how does your plugin handle content that expands within these equalized divs? For example, if #col2 contains a nested, hidden div, and that div is shown via jQuery. I am using a similar solution right now, but

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Brian Miller
John, Thank you! By moving to Google Code, you've obliquely solved my problem of not being able to check out the code at work through the web proxy (although, convincing subclipse to do so was a challenge in itself). Now, I don't need the nightlies so much anymore. :) - Brian The jQuery

[jQuery] NEWS: Building an Ext DataGrid Blog Series

2007-05-09 Thread Rey Bango
Steve Cutter Blades has come up with a nice series of postings on his experience of using Ext JS to build a datagrid. Its an interesting read and may help those folks that are considering using Ext. http://blog.cutterscrossing.com/index.cfm/2007/4/24/My-First-ExtJS-DataGrid-Pt-1 Rey... --

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
Excellent :-) Yeah, being able to go through http/https is a nice side effect of this. At the very least, we'll still be able to commit code if (when) jQuery.com is down. --John On 5/9/07, Brian Miller [EMAIL PROTECTED] wrote: John, Thank you! By moving to Google Code, you've obliquely

[jQuery] Re: NEWS: Building an Ext DataGrid Blog Series

2007-05-09 Thread Rey Bango
Correction on my posting. This: using Ext JS to build a datagrid should read: using Ext jQuery to build a datagrid Rey.. Rey Bango wrote: Steve Cutter Blades has come up with a nice series of postings on his experience of using Ext JS to build a datagrid. Its an interesting read and

[jQuery] Re: toggleClass and {required:true}

2007-05-09 Thread Jörn Zaefferer
Luc, there are two possible solutions: Hack the metadata plugin by setting metaDone on the toggled element to false. That causes the metadata to be read again. I recommend a different approach: Use the required-with-dependency feature to make the validation more dynamic. You can use both

[jQuery] Re: [bug]removeClass('') removes all classes

2007-05-09 Thread John Resig
I agree then, it is inconsistent. Once I get the bug tracker up, this should go in. --John On 5/9/07, Arrix [EMAIL PROTECTED] wrote: The .removeClass() behavior is good. But I don't think .removeClass() should remove every class. Though it doesn't make sense to write .removeClass(), sometimes

[jQuery] Re: Tabs plugin broken with MS patch last night?

2007-05-09 Thread Dan G. Switzer, II
I have several machines, dell laptops to be specific, that are not rendering tabs properly after the MS patches last night.The tabs are there, but the tab container is empty. This is happening in both IE 7 and Firefox 2. Is anyone else seeing this behavior? What kind of content are you

[jQuery] Re: Tabs plugin broken with MS patch last night?

2007-05-09 Thread Daemach
I'm sorry, I just figured out that the problem was with the animation functions in the last available nightly. I had patched it to allow appending selects and col/colgroups to the dom for my tableFilter plugin and it broke the tabs plugin. Of course, the dev site is down so I can't look at the

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-09 Thread thomasdeater
On May 9, 1:29 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: sorry, I meant $('html').parent().parent().size() and $('body').parent().parent().size() I'd guess body is 0 and html would croak... $('html').parent().parent().size() = 0 $('body').parent().parent().size() = 1 ([Document]) I'll just hope

[jQuery] Re: Tabs plugin broken with MS patch last night?

2007-05-09 Thread Brandon Aaron
Just replace your jquery.clean with the attatched jquery.clean method. It includes the fixes for the select, col and colgroups. Let me know if you need anything else. -- Brandon Aaron On 5/9/07, Daemach [EMAIL PROTECTED] wrote: I'm sorry, I just figured out that the problem was with the

[jQuery] Re: New plugin: equalize column heights

2007-05-09 Thread thomasdeater
On May 9, 2:18 pm, Paul Malan [EMAIL PROTECTED] wrote: I hope you won't mind that I didn't experiment to learn this answer for myself, but how does your plugin handle content that expands within these equalized divs? For example, if #col2 contains a nested, hidden div, and that div is

[jQuery] Need help with clearing .children

2007-05-09 Thread sleepwalker
Hey, I'm new to all this and I just can't figure out what I'm doing wrong. What I'm trying to do is clear the value for all the text input values within a div but as soon as I add the input boxes to a table it stops working. Any help would be amazing. Thx div a href=javascript:; onclick=$

[jQuery] Re: JavaScript Text nodes

2007-05-09 Thread Rodney Finn
So, I know how to type text into a javascript box and have it appear on the page. But when I refresh the page, all the text posted to the page vanishes. So, what I was asking was: Can I make the text I paste to the page with javascript STAY there, so that even after I refresh the page, it is

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Richard Thomas
If you need help with trac I might have a little bit of spare time and have some exp setting trac up. On 5/9/07, John Resig [EMAIL PROTECTED] wrote: Excellent :-) Yeah, being able to go through http/https is a nice side effect of this. At the very least, we'll still be able to commit code if

[jQuery] New Plugin: Best Practices and Guideline

2007-05-09 Thread Rodrigo Castilho Galvão Ferreira
Which the standard so that it can publish a new JQuery Plugin? Exists Guideline for publication? Thanks, -- Rodrigo Castilho Galvão Ferreira

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
You should contact me offlist, then - right now I'm fighting with versions of the pysqlite lib (or maybe mod_python, not sure which). My contact info can be found here: http://ejohn.org/about/ --John On 5/9/07, Richard Thomas [EMAIL PROTECTED] wrote: If you need help with trac I might have

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
Thank you for providing the alternate repositories. You might want to put this information on the official jQuery site. Or at least make it more prominent if it's there. I've been poking about the web for some time and didn't find it. Sorry to hear about the recent misfortunes with the official

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
Bother. I just downloaded the dimensions plugin but it contains no documentation. There are references in the code comments to see the documentation but I can't find any. The plugin demo page (http:// brandon.jquery.com/plugins/dimensions/test/offset.html) is throwing a 404 and the author's site

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Brandon Aaron
The documentation is inline: http://www.learningjquery.com/src/plugins/dimensions/jquery.dimensions.js You can also find some somewhat outdated documentation on the visual jQuery site (visualjquery.com) under Plugins Dimensions. You can reference the changelog to see what is different (not

[jQuery] remove attribute disabled from select - IE6

2007-05-09 Thread Josh Nathanson
Hey all, It seems as though in IE6, doing $(select).removeAttr(disabled) has no effect, i.e. it doesn't re-enable the select menu. My code works fine in FF. Is this known behavior and is there a workaround, or am I missing something? I started out trying to set disabled=false, which

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
Thanks. I never even thought to look at Visual jQuery for plugin docs. That's what I was looking for. On May 9, 3:56 pm, Brandon Aaron [EMAIL PROTECTED] wrote: The documentation is inline:http://www.learningjquery.com/src/plugins/dimensions/jquery.dimension... You can also find some

[jQuery] click - Basic issue

2007-05-09 Thread Mario Moura
Hi all I am trying $(p).click( function() { alert(Hello); } ); but I would like open in same window a page(link) like http://localhost/home How can I do that? I can only receive popups with click() function Regards Mario

[jQuery] Re: LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-09 Thread Shelane
Sorry, I've been in my own little world. is the script that's running the content replacement? http://www.svplace.com/teste/load.js if so, I can't tell which function is executing for which things. What function does the binding on the page that's getting loaded into the div? I still make the

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
Thank you for providing the alternate repositories. You might want to put this information on the official jQuery site. Or at least make it more prominent if it's there. I've been poking about the web for some time and didn't find it. Sorry to hear about the recent misfortunes with the official

[jQuery] Re: click - Basic issue

2007-05-09 Thread Aaron Heimlich
this should work: $(p).click( function() { window.location = 'http://localhost/home'; } ); but why not just use an plain old link? On 5/9/07, Mario Moura [EMAIL PROTECTED] wrote: Hi all I am trying $(p).click( function() { alert(Hello); } ); but I would like open in same window a

[jQuery] Re: remove attribute disabled from select - IE6 SOLVED

2007-05-09 Thread Josh Nathanson
I had my name and id attributes with different values, this was messing up IE. When I named them the same, it started working. -- Josh - Original Message - From: Josh Nathanson [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Wednesday, May 09, 2007 2:06 PM Subject:

[jQuery] Re: simple use of dimensions plugin

2007-05-09 Thread Paul Malan
Brandon, thanks for the help! My problem was first that my div was relative to a containing div instead of the body. I knew this couldn't have been so difficult! Thanks a bunch. On May 9, 3:10 pm, Brandon Aaron [EMAIL PROTECTED] wrote: You will want to use the offset method to find the

[jQuery] Re: click - Basic issue

2007-05-09 Thread Mario Moura
Thanks, Works like a charm. Now I finished what I was looking for. I was working to insert a link in caption(Subtitle) of Interface SlideShow (http://interface.eyecon.ro/demos/slideshow.html) Here my solution: $(.slideshowCaption).click( function openNewWindow() {

[jQuery] Re: .load external page by url

2007-05-09 Thread Paulo Gabriel Antunes
Massimiliano? From Fabico? O.o On 5/9/07, Massimiliano Marini [EMAIL PROTECTED] wrote: Hi Matt, Thats correct, ajax calls cannot retrieve external pages for security reasons. The only way to get external pages onto your page is to use an iframe, or a simple server side proxy that you can

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Aaron Heimlich
Out of curiosity, how are you planning on dealing with the fact that Trac doesn't support remote repositories[1]? [1]http://trac.edgewall.org/wiki/TracFaq#can-i-use-trac-with-a-remote-subversion-repository On 5/9/07, John Resig [EMAIL PROTECTED] wrote: Thank you for providing the alternate

[jQuery] Re: Stuck: with form validation + forms plugin w/ajax submit and forms options object

2007-05-09 Thread Mike Alsup
, but I have no idea as to how to go about doing that. submitHandler: function(form) { $(form).ajaxSubmit(options); } seemed like the obvious solution, but that didn't work. Help would be That looks right. Do you have a url we can look at? Mike

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
Out of curiosity, how are you planning on dealing with the fact that Trac doesn't support remote repositories[1]? [1]http://trac.edgewall.org/wiki/TracFaq#can-i-use-trac-with-a-remote-subversion-repository It's actually really really easy with SVN 1.4 - you use svnsync to pull down a copy of

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Aaron Heimlich
Sounds like a plan (I really like Trac's timeline and diff viewer, which is why I asked) On 5/9/07, John Resig [EMAIL PROTECTED] wrote: Out of curiosity, how are you planning on dealing with the fact that Trac doesn't support remote repositories[1]?

[jQuery] Re: MooTools 1.1

2007-05-09 Thread Dragan Krstic
But, all the demos are outside of jquery site, which doesn't have good effect. Then, there's that nasty two bugs: event overloading (especially during hovering) and quirky animation in FF. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] META Tag

2007-05-09 Thread Glen Lipka
meta http-equiv=refresh content=200;url=http://jquery.com; $(document).ready(function(){ var meta = $(meta).attr(content); alert(meta); //results in 200;url=http://jquery.com $(meta).attr(content,500;url=http://commadot.com;); alert(meta); //results in same as first }); Good news. The

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
one idea! setTimeout(window.location.href ='http://commadot.com',500*1000) On 5/9/07, Glen Lipka [EMAIL PROTECTED] wrote: meta http-equiv=refresh content=200;url=http://jquery.com; $(document).ready(function(){ var meta = $(meta).attr(content); alert(meta); //results in 200;url=

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread John Resig
Sounds like a plan (I really like Trac's timeline and diff viewer, which is why I asked) As do I - which is why I wouldn't have moved to Google Code unless I knew this was an option. --John

[jQuery] Re: META Tag

2007-05-09 Thread John Resig
isn't that because you're still referring to the old value in 'meta'? You need to call it again before you refer to it in the second alert: meta = $(meta).attr(content); --John On 5/9/07, Glen Lipka [EMAIL PROTECTED] wrote: meta http-equiv=refresh content=200;url=http://jquery.com;

[jQuery] get url?

2007-05-09 Thread BKDesign Solutions
I've been trying to do something in php and it dawned on me that jquery would be much easier and better. I have an auto generated link, which when one goes to it, its a redirect to an mp3 file. (link broken to fit. http://www.site.com/app/fetch.app? feed_id=29308perma_link=

[jQuery] jQuery.validator.addMethod How To

2007-05-09 Thread JMan
Hello, I am using the form validation plugin and I am stuck on the addMethod. I have created a method using the addMethod function, in this I have an ajax call to a server side page that validates the passed value. Every thing works ok except I cannot figure out how to get the new userNameInUse

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
meta http-equiv=refresh content=5;url=http://jquery.com; script type=text/javascript src=/js/jquery.js/script script type=text/javascript $(function(){ $(meta).attr(content,4;url= http://commadot.com;); }); /script /head goes to

[jQuery] Re: META Tag

2007-05-09 Thread Glen Lipka
Ahh, I just didnt redo the variable! I knew I should've been paying attention while reading John's book! It was in the chapter on Scope I think This is perfect. Thanks guys, Glen On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: meta http-equiv=refresh content=5;url=http://jquery.com;

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-09 Thread Equand
ok that's fine, but i can't manage to get it work... ( On May 8, 8:02 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, check the blog post:http://sorgalla.com/2007/05/07/jcarousel-020-beta/ Jan On 8 Mai, 17:37, Equand [EMAIL PROTECTED] wrote: sorry, can't find changes log, so what's new?

[jQuery] Error: $(document).ready is not a function

2007-05-09 Thread [EMAIL PROTECTED]
I'm mentally retarded, or something. I'm getting this error: Error: $(document).ready is not a function I am also using rico and prototype, maybe some sort of conflict? I'm new to jQuery, like, I just started 30 minutes ago, and I can't get past this silly hurdle, any suggestions?

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread John Resig
It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //.. }); More information about this setup can be found here:

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread [EMAIL PROTECTED]
That sounds very much like the problem, thanks. ilu. On May 9, 11:16 pm, John Resig [EMAIL PROTECTED] wrote: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so:

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-09 Thread Bil Corry
Equand wrote on 5/9/2007 9:11 PM: it's not working... i've setup everything and all that it creates is a long horizontal list of my images with no container etc... though the container is visible through dom inspector... I had the same problem, but figured it was user error. Let me know if

[jQuery] partially loaded ajax callback

2007-05-09 Thread Ⓙⓐⓚⓔ
since the dev list tickets system is down... I'll post here. What do you think of adding this code to ajax.js? it will allow better loading information for long dynamic(php,perl...) ajax requests diff -u ajax-orig.js ajax.js --- ajax-orig.js2007-04-12 12:27:36.0 -0700 +++

  1   2   >