[jQuery] Re: Autocomplete

2007-08-10 Thread duma
The first link is to the base plugin that I modified. The second link is to the version of autocomplete that I use, which includes my modifications Take care, Sean Jean Nascimento wrote: that link is yours version of autocomplete? -- View this message in context:

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Gordon
And here's a more fixed version that does handle resize. :) var myDiv = $('#myDiv'); // Fixes an IE bug where percentages are used to define the height of the container if ($.browser.msie) { var ieHeight= myDiv.css ('height'); if (ieHeight.match ('%')) {

[jQuery] Re: JS enabled or not

2007-08-10 Thread Klaus Hartl
seedy wrote: This can be done by showing the message This site requires javascript by default. Then use jQuery to hide that message. If javascript is not enabled, your code to hide that message will not work and they will see the message. You could also simply use the noscript element:

[jQuery] Re: SevenMagOnline.com Feature blocks

2007-08-10 Thread Andy Matthews
That's really nicely done Ganeshji. The animation is quite fluid. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ty Sent: Friday, August 10, 2007 12:29 PM To: jQuery (English) Subject: [jQuery] Re: SevenMagOnline.com Feature blocks Thanks

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread Andy Matthews
Sean... I have a question...when you pass in X to the anonymouse function on the 3rd line, what is x? Is it $(this), a jQuery object? How do you know what it is? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean Catchpole Sent: Friday, August 10, 2007 2:39

[jQuery] Re: pagination

2007-08-10 Thread Benjamin Sterling
I did not notice that, my bad. Not sure if there is one that works with ajax. On 8/10/07, Eridius [EMAIL PROTECTED] wrote: Form what i have been told, this only works for placing data in divs and i need one that work with ajax. bmsterling wrote:

[jQuery] Re: wildcards and onclick

2007-08-10 Thread Klaus Hartl
seedy wrote: When I try to use a wildcard to search for characters in an onclick attribute it doesnt appear to work. I think this syntax is correct $('input:[EMAIL PROTECTED]') I know there is a bug with onclick in 1.1.3.1, is this somehow related? I assume that you can't just parse the

[jQuery] Re: [ANNOUNCE] jCarousel Lite - version 1.0

2007-08-10 Thread Olaf Bosch
Ganeshji Marwaha schrieb: So, it is upto the developer how to do it. Once the button is created, all you need to provide jCarouselLite is just the selectors for the button, and jCarouselLite will take it from there. Makes sense? A little bit ;) You and I be Devs, for us is o.k. How many User

[jQuery] Re: Back Button Control and History Plugin

2007-08-10 Thread cfdvlpr
Glad to see I'm ot the only one. I'd still love to see a more complex example!

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Benjamin Sterling
Steve, My bad, I knew load() would have suited you better, my brain just likes to think in the hardest way possible. :) Your code looks good. On 8/10/07, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi! Thanks so much for the reply. This was the final set of code that I used that worked

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-10 Thread Robert O'Rourke
m3avrck wrote: Well it shows subsequent times, but in IE6, the first time it works great, the second time it gives an error that it's trying to show a hidden element... Brice emailed me so I might be using the onShow slightly wrong, hopefully that is it! Ok cool, let me know how you get

[jQuery] Internet Explorer and height()

2007-08-10 Thread Gordon
I need some help with a problem with a div and getting its height. I am wanting to design a layout that will work across across different browser window sizes, so I want to make my main div into which my AJAX content is injected defined by percentage widths and heights. For example, div id=foo

[jQuery] Re: Back Button Control and History Plugin

2007-08-10 Thread Benjamin Sterling
I am using the history plug in on this site: http://airplume.informationexperts.com/, it pop open an new window when you enter the module, but the url is http://airplume.informationexperts.com/module.htm#m-1000 (it needs the log in tho, just your first and last name in a cookie) The structure is

[jQuery] Re: tr[position() mod 3 = 0]

2007-08-10 Thread Dmitrii 'Mamut' Dimandt
John Resig wrote: As of jQuery 1.1.3 you can now do: $(tr:nth-child(3n)) Sorry for the late replay, but thank you!

[jQuery] Re: tr[position() mod 3 = 0]

2007-08-10 Thread Dmitrii 'Mamut' Dimandt
Sean Catchpole wrote: Dmitrii, the code Erik Beeson pasted works, here's another option: $.extend({expr:{::{mod: i%m[3]==0}}}); //adds mod selector $(tr:mod(3)) ~Sean Sorry for the late reply. This is amazing!

[jQuery] Re: Autocomplete

2007-08-10 Thread Jean
that link is yours version of autocomplete?

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread Sean Catchpole
Quick: x is each item of the array. Short: $.each is similar to Array.map $.each calls the function for each item in the array. If the function returns false then it stops. This is different from a map function in that a map function will replace the value in the array with what is returned by

[jQuery] Re: pagination

2007-08-10 Thread Web Specialist
Eridius jqGrid could be an option for you: this plugin haves a very nice pagination(recordset) example using ajax: http://trirand.com/jqgrid/jqgrid.html Cheers 2007/8/10, Benjamin Sterling [EMAIL PROTECTED]: I did not notice that, my bad. Not sure if there is one that works with ajax.

[jQuery] Re: wildcards and onclick

2007-08-10 Thread seedy
I do see that the typeof returns 'function'. Does this mean it will never work with *= ? Of interest, if I change that function like so: $('input:image').each(function() { alert(typeof $(this).attr('onclick')); }); It alerts 'string'. Not sure if that is helpful just thought it was

[jQuery] Re: CSS and DIV position

2007-08-10 Thread Andy Matthews
Take a look at the dimensions plugin. That will probably do everything you need/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, August 10, 2007 11:04 AM To: jQuery (English) Subject: [jQuery] CSS and DIV

[jQuery] Re: Excluding an element part of a selection

2007-08-10 Thread Dan G. Switzer, II
David, I have a question about selectors. First of all, I have the following html: div id=content a href=# input type=checkbox name=option1 value=Novedad1 Novedad 1: HOla holaaa /a /div As you can see,

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Gordon
I gave it a bit more thought and came up with this idea. It's not perfect, the div will be size locked after it executes so some resize event molarky will be necessary, but it does have the advantage that it uses the size specified in the stylesheet if it happens to be a percentage if

[jQuery] JQuery populating div with AJAX

2007-08-10 Thread Steve Finkelstein
Hi all I'm looking to populate a div with information from a database ... don't want to pass any parameters to the serverside script, just want the div updated according to my query if the db record sets are modified, is .ajaxStart() the appropriate function for this? I'm basically looking to

[jQuery] Translate a website using XML file : how to parse xml with Jquery ?

2007-08-10 Thread Benoit
Hello, I would like to use Jquery to parse an xml file. For the moment I use the following javascript code which works with IE, FF and Opera but NOT with Safari (Mac). Jquery is compatible with Safari, so I would like to do the same thing with this librairy but I don't know how to get the

[jQuery] Re: Slightly OT: overview of HTML5 elements

2007-08-10 Thread Nicolas Hoizey
A lot of these are probably more for the benefit of the search engines and for SEO purposes. Tags like section / and article / gives search engines a little more information about what they're parsing (the same with the header /, footer / and nav / tags.) It will be great for

[jQuery] Re: Need JQuery Interface Expert for Fun Project - Contract or Employee

2007-08-10 Thread polyrhythmic
You could try the new jobs board at http://ajaxian.com . I know jQuery but I'm more of a designer at heart. Good luck with your search! Charles doublerebel.com On Aug 9, 1:04 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Apologies in advance for posting this on the general discussion,

[jQuery] Optimize WINDOWS XP

2007-08-10 Thread John Travolta
Learn how to optimize your Windows XP with powerful tips and tricks http://windowsxpsp2pro.blogspot.com

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread [EMAIL PROTECTED]
Hi Steve, What about this example? $('#div-id').load('url.php'); More info can be found here: http://docs.jquery.com/Ajax#load.28_url.2C_params.2C_callback_.29 Good luck! Rick

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-10 Thread Ganeshji Marwaha
I have put together a demo. http://www.gmarwaha.com/test/other/testHoverAnchorInAndOutFast.html Have fun, and lemme know if this works for u. -GTG On 8/10/07, Nazgulled [EMAIL PROTECTED] wrote: I think I understood what you said, but I just can't find a way to code it... Coud you provide

[jQuery] Re: Dimensions plugin, offset is offset

2007-08-10 Thread Brandon Aaron
Yeah Safari 3 really threw a wrench in things. I'm worried that since it is still beta that they will fix some of it ... so I'm still investigating solutions. It won't be hard to fix ... just don't want to fix more than once. -- Brandon Aaron On 8/10/07, Luc Heinrich [EMAIL PROTECTED] wrote:

[jQuery] Re: Partial Accordion Possible?

2007-08-10 Thread Sean Catchpole
Hi Sam, With your html I was able to get this to work: $('#menu').Accordion({ header: 'li strong' }); ~Sean

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread Andy Matthews
K...That's what I thought. Thanks. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean Catchpole Sent: Friday, August 10, 2007 4:06 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using jQuery to parse a string Just the current item. If your array

[jQuery] Re: wildcards and onclick

2007-08-10 Thread Klaus Hartl
seedy wrote: I do see that the typeof returns 'function'. Does this mean it will never work with *= ? Of interest, if I change that function like so: $('input:image').each(function() { alert(typeof $(this).attr('onclick')); }); It alerts 'string'. Not sure if that is helpful just

[jQuery] Re: Excluding an element part of a selection

2007-08-10 Thread Dan G. Switzer, II
Denis, label for=idOption1 input type=checkbox name=option1 id=idOption1 value=Novedad1 / Novedad 1: HOla holaaa /label If you click on the text Novedad 1: HOla holaaa the browser will behave as if you clicked on the checkbox itself. -Dan just as a side-note, this does not work in

[jQuery] Re: Am I missing something dumb?

2007-08-10 Thread Klaus Hartl
Karl Swedberg wrote: Using $('#myId'), jQuery will only select the first element in the DOM with that id, since there is only supposed to be one. I'd like to note, that it's not even jQuery that is responsible for this behaviour, it's the underlying DOM method document.getElementsById

[jQuery] Re: Am I missing something dumb?

2007-08-10 Thread Andy Matthews
Have any code you could show us? I'm betting you need to look into the each method of jQuery. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JJ Sent: Thursday, August 09, 2007 11:24 AM To: jQuery (English) Subject: [jQuery] Am I missing

[jQuery] jQuery Corner Demo

2007-08-10 Thread [EMAIL PROTECTED]
Hi, I'm new to the group and thought I would share a really helpful demo I found. Hope you guys like it. http://methvin.com/jquery/jq-corner-demo.html - Matt

[jQuery] Re: Detecting AJAX calls - Controlling Ajax Injection Vulnerabilities

2007-08-10 Thread Pops
Very interesting, let me check.. Yes, indeed. Wonder how I can leverage that. If it was serialized or hashed with some server specific secret key, that might be enough to sandbox this! I will have to explore that. Thanks John. -- On Aug 9, 11:05 am, John Resig [EMAIL PROTECTED] wrote:

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Gordon
I had thought of that but I think that it would probably be an option of last resort, on the grounds that doing that would be breaking the seperation between presentation, content and behaviour. What happens if the designer decides he wants the window height to change to 65% or 85% six months

[jQuery] Dimensions plugin, offset is offset

2007-08-10 Thread LetsSurf
[had trouble posting this on the jQuery plugins discussions list] Been using the dimensions plugin recently and can't get the offset to return the same value on all browsers, IE7 mainly is different from FF2 (opera 9 is same as FF2, but FF3(alpha) is the same as IE7) can't test on IE6. The same

[jQuery] Re: Image loaded

2007-08-10 Thread Klaus Hartl
b0bd0gz wrote: Hi, I have some thumbnails and when clicked they will load a larger image on the same page based on the thumbnails href value. Heres the code I'm using to do this. $('a').click(function(){ var selected = $(this).attr(href);

[jQuery] Re: Create excel file from table data

2007-08-10 Thread Bil Corry
Glen Lipka wrote on 8/10/2007 10:34 AM: Yes. Specifically a table. You can even add CSS backgrounds, and borders which Excel picks up too. (Assuming the headers say its excel) And you can tell Excel how to format the data, for example to display a US zip code: td

[jQuery] Re: wildcards and onclick

2007-08-10 Thread Klaus Hartl
Klaus Hartl wrote: seedy wrote: When I try to use a wildcard to search for characters in an onclick attribute it doesnt appear to work. I think this syntax is correct $('input:[EMAIL PROTECTED]') I know there is a bug with onclick in 1.1.3.1, is this somehow related? I assume that you

[jQuery] Re: JS enabled or not

2007-08-10 Thread seedy
This can be done by showing the message This site requires javascript by default. Then use jQuery to hide that message. If javascript is not enabled, your code to hide that message will not work and they will see the message. senzacionale wrote: i found this

[jQuery] Re: Back Button Control and History Plugin

2007-08-10 Thread cfdvlpr
I've got this working pretty good right now, but there's one thing I can't get right. I notice in Firebug that the url is loading correctly, but when I look at the url in the address bar of my browser, this url gets long and is not right. I'm not sure how to fix this. Here's my code if anyone

[jQuery] Re: JS enabled or not

2007-08-10 Thread Benjamin Sterling
Klaus, that is too simple, I think we need a full fledge plugin with all the bells and whistles :) I kid, but senzacionale, Klaus' suggestion is the best way to check if javascript is enabled or not and display a message if not. On 8/10/07, Klaus Hartl [EMAIL PROTECTED] wrote: seedy wrote:

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Steve Finkelstein
Hi! Thanks so much for the reply. This was the final set of code that I used that worked great for me: $(document).ready(function() { $('.pendingUsers').load('foo.php'); setInterval(function() { $('.pendingUsers').load('foo.php'); }, 30); }); The first load is to

[jQuery] Re: Autocomplete

2007-08-10 Thread duma
Wow, this one is good! I especially like the boldening of the search term. It locks up Maxthon for some reason, though. Ie7 works fine, though. Sean Rey Bango-2 wrote: Hi Erik, Correct on the URL: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Chali, thanks

[jQuery] Re: pagination

2007-08-10 Thread Eridius
Form what i have been told, this only works for placing data in divs and i need one that work with ajax. bmsterling wrote: http://rikrikrik.com/jquery/pager/#examples On 8/10/07, Eridius [EMAIL PROTECTED] wrote: I was wonding is a plug exist for jquery to handle pagintion? -- View

[jQuery] Re: Create excel file from table data

2007-08-10 Thread duma
I'll take this opportunity to announce an Excel reading-and-writing library for .Net that I've made available: Get the library http://pinkblack.org/excel_dotnet/ here ! I ported the code from a Java library called JExcelApi (thanks, you all!! ;-)) Keep creating! Sean Glen Lipka wrote:

[jQuery] wildcards and onclick

2007-08-10 Thread seedy
When I try to use a wildcard to search for characters in an onclick attribute it doesnt appear to work. I think this syntax is correct $('input:[EMAIL PROTECTED]') I know there is a bug with onclick in 1.1.3.1, is this somehow related? -- View this message in context:

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-10 Thread polyrhythmic
Whoa where was the announcement? Snuck up on us with that one... Thanks for the fix Cody! Charles doublerebel.com On Aug 9, 7:42 am, Cees [EMAIL PROTECTED] wrote: It seems like the problem is solved : Cody has release thickbox 3.1 ! One of the release notes : Updated to jQuery 1.1.3.1 ;)

[jQuery] Text node selector?

2007-08-10 Thread Jed Schmidt
I'm just starting to dig into jQuery, and was wondering whether anyone would have an idea how to implement a selector that would return text nodes. For example, something like #text, which is Mozilla's name for text nodes[1], or text(), which is an xpath selector[2] (realizing of course that the

[jQuery] Translate a website using XML file : how to parse xml with Jquery ?

2007-08-10 Thread Benoit
Hello, First of all, I'm new with Jquery. I would like to use an xml file to translate a website. For the moment I use pure javascript, but the problem is that it's fonctionnal with IE67, FF2 and Opera, but not with Safari (Mac). So, I would like to use now Jquery to do the same thing because

[jQuery] Re: John's Pager - best plugin no one uses?

2007-08-10 Thread astik
agent2026 a écrit : This undocumented plugin is really worth adding to the repository I think. It needs a little fleshing out, which I've tried to do, but all in all is a super fast, super easy to implement pager. I've modified it with spread (how many pages to either side of your current

[jQuery] Re: Translate a website using XML file : how to parse xml with Jquery ?

2007-08-10 Thread Benjamin Sterling
Benoit, I had to do the same thing for a couple a sites and did something like: var docXML = Arrya(); loadXml = function(xmlFile, index, func){ try{ $.ajax({ url: xmlFile, dataType: 'xml', async : false, success:

[jQuery] Re: Am I missing something dumb?

2007-08-10 Thread Klaus Hartl
JJ wrote: I am a newbie (and very much a convert) to JQuery but have spent all afternoon bashing my head against a brick wall with this one. I want to show hide (or in the example, change the class) of a single element in an array of DIV's). Whatever I do, I can only reference the first one,

[jQuery] Re: SITE SUBMISSION: http://www.thor.be/creations.php

2007-08-10 Thread Ganeshji Marwaha
awesome. very cool and well done... -GTG On 8/8/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Friends, i'm very pleased to inform you about the fresh release of Belgian contemporary dance *Compagnie Thor* new website: http://www.thor.be/ use of jquery for: - layouting via

[jQuery] Re: [NEWS] jQuery Team Member Jörn Zaeffere r in Javamagzin

2007-08-10 Thread Ganeshji Marwaha
cool... congrats Jörn... jQuery goes well with java. I know there is no context in what i am talking, but just said so because, i am using jquery with java. I just wish someone develops a dwr like plugin for jquery, before i start doing something like that... -GTG On 8/10/07, Sean Catchpole

[jQuery] Re: jQuery Corner Demo

2007-08-10 Thread Mike Alsup
Hi Ganeshji, FYI, it's the same plugin on both of our sites. Dave is the original author and mastermind behind it all. We collaborated on some of the additional effects. The official version can be found here: http://jqueryjs.googlecode.com/svn/trunk/plugins/corner/jquery.corner.js Cheers!

[jQuery] Re: jQuery Corner Demo

2007-08-10 Thread Ganeshji Marwaha
That is what i tried to tell... guess it came out wrong. :-) -GTG On 8/10/07, Mike Alsup [EMAIL PROTECTED] wrote: Hi Ganeshji, FYI, it's the same plugin on both of our sites. Dave is the original author and mastermind behind it all. We collaborated on some of the additional effects.

<    1   2