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

2007-08-10 Thread Ganeshji Marwaha
Hi Olaf, u r absolutely right. When javascript is disabled, there is no need for a button there. One should probably put the markup for the button through javascript. jCarouselLite as such doesn't bother about how and where the button is placed. In fact, the buttons need not be part of the

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

2007-08-10 Thread Cees
@ work ! Problem solved after implementing Thickbox 3.1 ! Thanks to Klaus for investing time and effort into this problem , Cody for releasing Thickbox 3.1 ;)) -Cees

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Benjamin Sterling
Steve, You ultimately don't need to send params to the server side page, you will just need to account for the returned information. $.ajax({ type: POST, url: some.php, success: function(msg){ alert( Data Saved: + msg ); } }); the success is where you would put your function to

[jQuery] Re: Partial Accordion Possible?

2007-08-10 Thread Sam Collett
I have set up a test page: http://www.texotela.co.uk/accordiontest.php If I click several times on each heading, it freezes the browse (be it Firefox or IE). On Aug 10, 3:09 pm, Sean Catchpole [EMAIL PROTECTED] wrote: Hi Sam, With your html I was able to get this to work:

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Benjamin Sterling
Either way you should wrap it in a $(document).ready, but you can put the ajax call into it's own function and call in in the setInterval. On 8/10/07, Steve Finkelstein [EMAIL PROTECTED] wrote: Benjamin, Thank you kindly again. One last inquiry. Do I pop that into a separate script?

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

2007-08-10 Thread spinnach
Dan G. Switzer, II wrote: 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

[jQuery] Re: ContextMenu plugin - right click menu

2007-08-10 Thread Dan G. Switzer, II
Terry, Well since I did not see any contact info on the page, I will just post here. I like this plugin but at least one bug and at least one suggestion. Referring to the plugin found here: http://www.trendskitchens.co.nz/jquery/contextmenu/ 1) If you use jquery with no conflict like I do,

[jQuery] Re: min max in array

2007-08-10 Thread Klaus Hartl
Rob Desbois wrote: Your trusty friend 'Google' is usually the best way for this! A quick search on javascript array max yields a useful result from none other than John: http://ejohn.org/blog/fast-javascript-maxmin/ Cool, I knew I had seen it before.. and even cooler it was from John

[jQuery] pagination

2007-08-10 Thread Eridius
I was wonding is a plug exist for jquery to handle pagintion? -- View this message in context: http://www.nabble.com/pagination-tf4250056s15494.html#a12095618 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread cfdvlpr
That's just the kind of help I needed. Here's what I have now that works perfectly: var sArr = s.split('-'); h = {}; h['title'] = sArr[0].replace(/^.*\./,''); h['color'] =

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

2007-08-10 Thread Dan G. Switzer, II
yes, sorry, it works if you include the for= bit.. if you leave it out (and write it like this, which is also 100% valid), clicking on the label won't work in ie6.. not sure about ie7.. in firefox it works: label Name input type=checkbox name=option id=option value=value / /label That's

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread Andy Matthews
You could split the string on .. That would create an array which you could then do things with: var s = 'title.string1-color.string2-size.string3'; Var sArr = s.split('.'); Alert(sArr); Returns title,string1-color,string2-size,string3 -Original Message- From:

[jQuery] Re: jCarousel Lite - version 1.0

2007-08-10 Thread Ty
Hi Ganeshji, Hey is it possible to have the presentation vertical, say three thumbnails tall, and then have it animate horizontally to slide three new thumbnails into place. I haven't seen an example for that type of a setup, still looking them over though. Nice work. thanks. On Aug 9, 3:20 pm,

[jQuery] Re: [Announce] jQuery Reference Guide available for pre-order

2007-08-10 Thread Bernd Matzner
Is there to be a PDF version of this? Yeah, too bad there's not an ebook available (yet?). Hope it's as good the the Learning jQuery book ;-), which, btw, was just reviewed at http://blogs.pathf.com/agileajax/2007/08/book-review-lea.html and featured at

[jQuery] Re: SevenMagOnline.com Feature blocks

2007-08-10 Thread Ty
Thanks for that prototype Ganeshji, it seems to be working just about right. On Aug 4, 3:27 pm, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hey Ty, Did a quick prototype of what you might be expecting. I have hosted it athttp://www.gmarwaha.com/jquery/slidingmenu/test/test.html This is a

[jQuery] Re: Autocomplete

2007-08-10 Thread Dylan Verheul
Kai, autocomplete does not require you to pick an item from the list. It's a suggestion. There is however an option that forces you to pick from the list and disallows non-list choices. I forgot: but this option is not implemented in Jörn's version. Dylan

[jQuery] Re: Autocomplete

2007-08-10 Thread Dylan Verheul
On 8/10/07, Kai Kuehne [EMAIL PROTECTED] wrote: Forgot something: On 8/9/07, Dylan Verheul [EMAIL PROTECTED] wrote: IMHO it shouldn't be a default in local mode, but I don't know if this was deliberate or not. I also disagree here. E.g., if there is one entry in the list, the plugin

[jQuery] Re: populate div with ajax inquiry

2007-08-10 Thread Jean
i think u want this $(#div_id).load('url.php',{somedata: or_nothing}, function(){ alert('Loaded'); }); On 8/10/07, Steve Finkelstein [EMAIL PROTECTED] wrote: 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,

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

2007-08-10 Thread spinnach
Dan G. Switzer, II wrote: 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

[jQuery] Re: Autocomplete

2007-08-10 Thread duma
Hi! I've been using this one: http://www.pengoworks.com/workshop/jquery/autocomplete.htm I like it. It's simple and straightforward and doesn't have a lot of overhead. But of course, I ended up adding features :-) Here's a list of changes I made, in case someone's interested: Updates to

[jQuery] Re: Using Wildcards to find specific ID on a page

2007-08-10 Thread David Williams
Wow fast responses to this group, I am impressed. Thanks. Brandon: Yes I used your second suggestion. The full line binds a click event to hide/show a span $('[EMAIL PROTECTED]').click(function() { $ ('#spnShowHideDemo').toggle(); }); Karl: Yes you may correct about the size of the

[jQuery] Re: Using jQuery on an AJAX called page

2007-08-10 Thread Klaus Hartl
Mystagogos wrote: I have a question on using jQuery in a page that I call using AJAX. I am using Klaus Hartl's tabs plug-in and using its AJAX capability. My problem is this. Clicking on a tab gives me a form that I have wrapped in a div tag. That form needs to use jQuery's form plug-in and

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Steve Finkelstein
Benjamin, Thank you kindly again. One last inquiry. Do I pop that into a separate script? Possible just throw it inside of a $(document).ready() wrapper? On 8/10/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Not entirely sure what you are saying but you can do something like:

[jQuery] Re: min max in array

2007-08-10 Thread Klaus Hartl
Simpel wrote: Hi there! not really a jquery question this maybe but hopefully someone will answer it anyway... I've got an array with different productprices. I'd like to get the highest and lowest price out of this array. What's the best way to do this? /J A little less known that is, the

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

2007-08-10 Thread spinnach
you could try something like this: $('#content a').click(function (event){ if (!$(event.target).is('input:checkbox')) { //do something.. } }); p.s. i'm not sure if it's valid to have a checkbox inside a link ? dennis. Rob Desbois wrote: I'm not sure how to do this as it stands -

[jQuery] Re: min max in array

2007-08-10 Thread Rob Desbois
Your trusty friend 'Google' is usually the best way for this! A quick search on javascript array max yields a useful result from none other than John: http://ejohn.org/blog/fast-javascript-maxmin/ --rob On 8/10/07, Simpel [EMAIL PROTECTED] wrote: Hi there! not really a jquery question this

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

2007-08-10 Thread Rob Desbois
I'm not sure how to do this as it stands - I've never been particularly au fait with text nodes and how to work with them. However, a possible solution is to put the text next to the checkbox in a span and then attach the click event to that. --rob On 8/9/07, David Garcia Ortega [EMAIL

[jQuery] Re: Create excel file from table data

2007-08-10 Thread Glen Lipka
On 8/9/07, polyrhythmic [EMAIL PROTECTED] wrote: Glen: Excel will parse pure html tagged as an xls? If it's easier than .CSV converting, I have to implement this for a customer. Yes. Specifically a table. You can even add CSS backgrounds, and borders which Excel picks up too. (Assuming the

[jQuery] Re: Using Wildcards to find specific ID on a page

2007-08-10 Thread Karl Swedberg
On Aug 10, 2007, at 11:10 AM, David Williams wrote: Summary: I am new to JQuery. Is it possible to search for a element by ID using a wildcard? Something like this where * indicates a wildcard? $('#*btnTest') You could try $('[EMAIL PROTECTED]') Warning, if you have a lot of DOM

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Benjamin Sterling
Not entirely sure what you are saying but you can do something like: setInterval(function(){ $.ajax({ type: POST, url: some.php, success: function(msg){ $('myDiv).text(msg); } }); }, 1000); On 8/10/07, Steve Finkelstein [EMAIL PROTECTED] wrote: Benjamin, I believe you

[jQuery] Using Wildcards to find specific ID on a page

2007-08-10 Thread David Williams
Summary: I am new to JQuery. Is it possible to search for a element by ID using a wildcard? Something like this where * indicates a wildcard? $('#*btnTest') Background: I develop in ASP.Net. The button in question exist in a user control, which when placed on a page modifies the generated

[jQuery] Re: Am I missing something dumb?

2007-08-10 Thread Karl Swedberg
DIV class='wump1' id=SB1/DIV DIV class='wump1' id=SB1bbb/DIV DIV class='wump1' id=SB1ccc/DIV DIV class='wump1' id=SB1ddd/DIV I think what you're missing is that HTML doesn't allow for multiple elements with the same id. You should try running your page through a validation tool such

[jQuery] Re: JQuery populating div with AJAX

2007-08-10 Thread Steve Finkelstein
Benjamin, I believe you understood properly, yes! I'm not sending the server any information, just receiving back information from a database which is influenced from other sources, not this application. I'll have to lookup SetInterval syntax, thanks for the pointer. Is it wise to try the

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Brandon Aaron
Ahh nice work. :) -- Brandon Aaron On 8/10/07, Gordon [EMAIL PROTECTED] wrote: 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

[jQuery] Re: jQuery Corner Demo

2007-08-10 Thread Andy Matthews
Matt... Dave Methvin, the author of that plugin is on this very list. Good post. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 09, 2007 10:56 PM To: jQuery (English) Subject: [jQuery] jQuery

[jQuery] Problem keeping swap image from mouseout

2007-08-10 Thread Frank
I am not sure if anyone can solve this problem, however, I am trying to keep the rollover image2 if the user clicks on image2. However on mouseout, it reverts back to image1. I have tried different coding and I am tripped up everytime. Frank

[jQuery] Re: SITE SUBMISSIONS: doublerebel.com, villaappiaapts.com

2007-08-10 Thread Tane Piper
Very Slick!!! On 8/9/07, polyrhythmic [EMAIL PROTECTED] wrote: It is my honor to announce the launch of Double Rebel (http:// www.doublerebel.com), my personal design studio. jQuery has allowed me to design my cross-browser web presence in record time. It is still a bit light on detail

[jQuery] Re: Create excel file from table data

2007-08-10 Thread Mike Miller
Hi...how would you post this back with an ajax request? M On Aug 9, 8:10 am, Glen Lipka [EMAIL PROTECTED] wrote: the format of the html can be a regular old TBALE tag. To have it point to Excel you need to change the headers. In php: ?php header(Content-type: application/vnd.ms-excel;

[jQuery] Scrolling a div area without scrolling the page?

2007-08-10 Thread [EMAIL PROTECTED]
Hi, I don't know if jquery will be able to address this but I thought I would try anyway. Is there a way to scroll a div area (which has an overflow:auto) to an anchor point within the div without scrolling the page (i.e., the page should remain stationary)? In other words, is there a way to

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

2007-08-10 Thread astik
On 10 août, 12:52, agent2026 [EMAIL PROTECTED] wrote: 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

[jQuery] Re: Autocomplete

2007-08-10 Thread Kai Kuehne
Hi, On 8/9/07, Dylan Verheul [EMAIL PROTECTED] wrote: The local mode was added by Jörn, you should ask him (I cc'd him). It makes sense not to show the first item in remote mode (performance). IMHO it shouldn't be a default in local mode, but I don't know if this was deliberate or not.

[jQuery] min max in array

2007-08-10 Thread Simpel
Hi there! not really a jquery question this maybe but hopefully someone will answer it anyway... I've got an array with different productprices. I'd like to get the highest and lowest price out of this array. What's the best way to do this? /J

[jQuery] populate div with ajax inquiry

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] Re: Autocomplete

2007-08-10 Thread Kai Kuehne
Forgot something: On 8/9/07, Dylan Verheul [EMAIL PROTECTED] wrote: IMHO it shouldn't be a default in local mode, but I don't know if this was deliberate or not. I also disagree here. E.g., if there is one entry in the list, the plugin should select it. Why should I select another entry?

[jQuery] SITE SUBMISSIONS: doublerebel.com, villaappiaapts.com

2007-08-10 Thread polyrhythmic
It is my honor to announce the launch of Double Rebel (http:// www.doublerebel.com), my personal design studio. jQuery has allowed me to design my cross-browser web presence in record time. It is still a bit light on detail but my perfectionism will be constantly improving and expanding the

[jQuery] Query String Object

2007-08-10 Thread Blair Mitchelmore
So recently, I needed a quick easy way to both access query string parameters as an object and to output that object as a query string. I found a meta-plugin that Joern had written a while back for parsing into an object and I decided to expand on that. The two key features I added were a 'set'

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

2007-08-10 Thread Mike Fern
On 8/10/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hi friends, I have finally released the 1.0 version of jCarouselLite plugin. There was a lot of feedback for the earlier revisions, and i sincerely thank you all for that, because that is what shaped this 1.0 release. Nicolas Hoizey and

[jQuery] Excluding an element part of a selection

2007-08-10 Thread David Garcia Ortega
Hi JQueriers, 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

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

2007-08-10 Thread Nicolas Hoizey
Nicolas Hoizey and Mike Fern - As per your request, circular is now well, circular. The carousel won't rewind itself after the last element. Rather it will cycle as if there is no end. Thanks you sooo much! ;-) -Nicolas -- Nicolas Brush HOIZEY Clever Age : http://www.clever-age.com/

[jQuery] jquery+XML

2007-08-10 Thread Jimmy Neph
Hi! I have a func to read a XML file to load a image. Well. At the first time it works fine, but, when I reload the page, the script don't load the image, and don't return a error. Here the code: document.myImage.onload = function(){ $(#img).fadeIn(); $(#ajax-loader).css(display,block)

[jQuery] Ajax Call and Javascript In Result Not Working

2007-08-10 Thread mstearne
Why isn't the Javscript contained in an HTML file executed in IE or Safari when I call: $.get(/mobile/includes/shc/p2.php, function(data) {$(#p2Div).html(data);}); Using the current version of jquery 1.1.3.1 Thanks, Michael

[jQuery] Re: Create excel file from table data

2007-08-10 Thread polyrhythmic
Glen: Excel will parse pure html tagged as an xls? If it's easier than .CSV converting, I have to implement this for a customer. Mike: I generally use Comma Seperated Value tables for porting light databases to users, since they are plain-text and very portable (and any portion of a db small

[jQuery] Re: IE bug or rookie mistake?

2007-08-10 Thread Kyle
Marc, That worked flawlessly, thanks so much! Kyle

[jQuery] Am I missing something dumb?

2007-08-10 Thread JJ
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, and the

[jQuery] ContextMenu plugin - right click menu

2007-08-10 Thread Terry B
ContextMenu plugin - right click menu Well since I did not see any contact info on the page, I will just post here. I like this plugin but at least one bug and at least one suggestion. Referring to the plugin found here: http://www.trendskitchens.co.nz/jquery/contextmenu/ 1) If you use jquery

[jQuery] Re: Slide Right

2007-08-10 Thread polyrhythmic
That cycle plugin is killer! I have found my replacement for frontpage flash foto-fading. Rotating portfolio/client work images on a frontpage is an easy way to catch the eye - and everyone's doing it right now...in flash. I have been boycotting the technique, but with jQuery and easing it has

[jQuery] Re: jQuery in 15 Minutes Slideshow on Ajaxian

2007-08-10 Thread Rey Bango
:) Rey... Pops wrote: Whoa!!! Thanks! The slide was good, but what was really GREAT was the last slide reference to: http://visualjquery.com This is going to be my main reference link to get going with JQUERY! This might be enough to convince me to order the book. The jquery.com people

[jQuery] Re: Slide Right

2007-08-10 Thread Nicolas Hoizey
Hello Mike, You can do this with the Cycle plugin. I just added a bunch of new effects: http://www.malsup.com/jquery/cycle/ Could you add demos with images that are not the same size (if it works)? And do you think you could add Ken Burns effects, so that I drop my plugin in favor of

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

2007-08-10 Thread Brice Burgess
On Aug 8, 10:20 pm, m3avrck [EMAIL PROTECTED] wrote: Will be announcing the plugin very soon, it's going to rock and amaze people, based on the current feedback ;-) [yes, it's called CSSmizer] However, found another bug -- onShow is called the first time the page loads, but if you close the

[jQuery] Re: jQuery in 15 Minutes Slideshow on Ajaxian

2007-08-10 Thread Pops
Whoa!!! Thanks! The slide was good, but what was really GREAT was the last slide reference to: http://visualjquery.com This is going to be my main reference link to get going with JQUERY! This might be enough to convince me to order the book. The jquery.com people need to put this link on

[jQuery] Validate() error - jQuery(a).data is not a function ?

2007-08-10 Thread Luc Pestille
Hi all, I have a form, generated with php, which spits out a number of sets of fields (title, forename, surname etc.), which I need to validate. However, because I don't know how many sets of field there might be, i can't use the rules/messages as I usually do: $(#booking-stage-2).validate({

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

2007-08-10 Thread Dan G. Switzer, II
Viele, http://gmarwaha.com/jquery/jcarousellite/test/testDefault.html . Here, i dont have that kind of setup. Here, the carousel should unobstrusively display all the elements based on what your css style rules are... In my case, i don't have any style rules except for the browser default.

[jQuery] Re: Dimensions plugin, offset is offset

2007-08-10 Thread Luc Heinrich
On 10 août 07, at 15:49, Brandon Aaron wrote: The values reported are the correct values for that particular browser. I personnally have some major issues with offset and Safari 3, issues which at least seems to be known according to http://jquery.com/ plugins/node/253. Any words on

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Brandon Aaron
Then you have to go in and change that .7 to .85. :p Actually I'll use a config file for stuff like this. It is Where all my plugins options, etc are stored. Makes changes like this as easy as it is with CSS. -- Brandon Aaron On 8/10/07, Gordon [EMAIL PROTECTED] wrote: I had thought of that

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

2007-08-10 Thread Klaus Hartl
Dan G. Switzer, II wrote: yes, sorry, it works if you include the for= bit.. if you leave it out (and write it like this, which is also 100% valid), clicking on the label won't work in ie6.. not sure about ie7.. in firefox it works: label Name input type=checkbox name=option id=option

[jQuery] Re: IE and Making dynamically added items draggable?

2007-08-10 Thread Fredrik Karlsson
Found the following ticket which might be related... http://dev.jquery.com/ticket/1315 Starting to think I'm out of luck, but if that's the case I'll try to replace the whole thing and use sortables instead.

[jQuery] Form plugin, packable?

2007-08-10 Thread Josh Nathanson
Hey all, Just downloaded the official Form plugin, and I notice there is not a packed version anywhere that I can find. I can pack it myself of course, but I'm just wondering if there's a reason that there's not a packed version anywhere - is there an issue with packing this particular

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

2007-08-10 Thread Nazgulled
It doesn't really work as expected. Let's say you increase the time it takes to do the animation (it's easier to see the problem). You move the mouse over, then out and then back over, all this while the first mouse over animation is being executed. You'll notice that the mouse out animation will

[jQuery] Using jQuery to parse a string

2007-08-10 Thread cfdvlpr
I want to parse a string of the following form: var s = title.string1-color.string2-size.string3 How do I create a struct with the three strings? h = {}; h['title'] = s.match() h['color'] = s.match() h['size'] = s.match() Can you help me do the rest? Would I just want to use the .match

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

2007-08-10 Thread Nazgulled
I think I understood what you said, but I just can't find a way to code it... Coud you provide me with a simple example on how to do it? Let's say I have the following code: $(a#testlink).mouseover(function() { $(div#testbox).animate({ color: '#00' }, 1000); });

[jQuery] Re: Am I missing something dumb?

2007-08-10 Thread Karl Swedberg
On Aug 10, 2007, at 11:25 AM, Klaus Hartl wrote: 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

[jQuery] Re: Problem keeping swap image from mouseout

2007-08-10 Thread Benjamin Sterling
Frank, Can you elaborate a little bit or post what you have? Sounds like what you need to do, assuming once the user clicks on the image2 that the rollover disappears, is something like: $('#myimg').hover(function(){ $(this).attr('src','image2'); }, function(){ $(this).attr('src','image1'); })

[jQuery] Re: Using Wildcards to find specific ID on a page

2007-08-10 Thread Brandon Aaron
You could use either of these attribute selectors: - [EMAIL PROTECTED] an E element whose foo attribute value ends exactly with the string bar - [EMAIL PROTECTED] an E element whose foo attribute value contains the substring bar So your query would look like this: $('[EMAIL

[jQuery] Re: Partial Accordion Possible?

2007-08-10 Thread Sean Catchpole
On 8/10/07, Sam Collett [EMAIL PROTECTED] wrote: http://www.texotela.co.uk/accordiontest.php You could try this: $(#menu).Accordion({header:'li.haschildren[strong]'}); ~Sean

[jQuery] Re: SevenMagOnline.com Feature blocks

2007-08-10 Thread Ganeshji Marwaha
np, my next job is to make that into a good and usable plugin over the weekend :-) -GTG On 8/10/07, Ty [EMAIL PROTECTED] wrote: Thanks for that prototype Ganeshji, it seems to be working just about right. On Aug 4, 3:27 pm, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hey Ty, Did a

[jQuery] Re: [Announce] jQuery Reference Guide available for pre-order

2007-08-10 Thread Karl Swedberg
On Aug 10, 2007, at 1:50 PM, Bernd Matzner wrote: Is there to be a PDF version of this? Yeah, too bad there's not an ebook available (yet?). Hope it's as good the the Learning jQuery book ;-), which, btw, was just reviewed at http://blogs.pathf.com/agileajax/2007/08/book-review-lea.html and

[jQuery] IE and Making dynamically added items draggable?

2007-08-10 Thread Fredrik Karlsson
I need some help with solving the following problem: I have eight ul elements made .droppable() on mouseover (using Interface), and accepting draggable li elements, as so ( Stripped some non-relevant code ): $(document).ready(function() { $('body').mouseover(function(event) {

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

2007-08-10 Thread voltron
Hi, where is the original page for the plugin? Are there examples? On Aug 10, 12:52 pm, agent2026 [EMAIL PROTECTED] wrote: 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

[jQuery] Re: input's form with [ ] in its name

2007-08-10 Thread niKo92130
thanks a lot for your help, Dan. niKo On Aug 9, 4:44 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: niKo, I must use a form with some inputs which have [ ] in their name to be able to record some values in an array. But when I use this sample code, checkbox are not returned :

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

2007-08-10 Thread Pops
I found something at http://ajax.phpmagazine.net/ajax_security I'm do more searchin here. Thanks. On Aug 9, 10:06 am, Benjamin Sterling [EMAIL PROTECTED] wrote: Pops, there was a big discussion a few months back on this subject that you may benifit from. Do a search for ajax securing;

[jQuery] Re: jCarousel Lite - version 1.0

2007-08-10 Thread Ganeshji Marwaha
Awesome work. I'm now thinking to port this nice plugin to as a module in open source application like joomla. @Mike - Thanks, and that would be cool... Hi Ganeshji, Hey is it possible to have the presentation vertical, say three thumbnails tall, and then have it animate horizontally to

[jQuery] Re: pagination

2007-08-10 Thread Benjamin Sterling
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 this message in context: http://www.nabble.com/pagination-tf4250056s15494.html#a12095618 Sent from the JQuery mailing list archive

[jQuery] Re: Dimensions plugin, offset is offset

2007-08-10 Thread Brandon Aaron
The values reported are the correct values for that particular browser. In other words ... that is actually where the element is positioned. The elements are positioned differently based on the browsers interpretation of the CSS you are using. Try positioning an element absolute as a direct child

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-10 Thread Rey Bango
No need to apologize Mario. :) You're always welcome to offer suggestions and believe me that we're very open to them. The main thing is that its always best to: 1) Provide an example of your problem 2) Provide as much detail as possible so people don't have to guess at the issue Rey..

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

2007-08-10 Thread Sean Catchpole
Congrats Jörn! ~Sean

[jQuery] Re: Image loaded

2007-08-10 Thread b0bd0gz
Thanks for everyone's help, its all working how I want it to now. Thanks again:D b0bd0gz -- View this message in context: http://www.nabble.com/Image-loaded-tf4248146s15494.html#a12091493 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] Re: Using jQuery to parse a string

2007-08-10 Thread Sean Catchpole
Hi, This might be a fancier solution: var s = title.string1-color.string2-size.string3; h={}; $.each(s.split('-'),function(x){ var t = x.split('.'); h[ t[0] ] = t[1]; }); ~Sean On 8/10/07, cfdvlpr [EMAIL PROTECTED] wrote: That's just the kind of help I needed. Here's what I have now

[jQuery] Re: Image loaded

2007-08-10 Thread Benjamin Sterling
On 8/10/07, b0bd0gz [EMAIL PROTECTED] wrote: Thanks that worked but can the Loading... appear in place of the large image instead of the thumbnail? Thanks for the help :D b0bd0gz -- View this message in context: http://www.nabble.com/Image-loaded-tf4248146s15494.html#a12090344 Sent

[jQuery] Re: jQuery Team Member Jörn Zaefferer in Ja vamagzin

2007-08-10 Thread Cees
So Jörn - made it to the tabloids ;)) I hope without a foto so you will be mysterious for the rest of your community live in jQuery :P Congrats -Cees On Aug 10, 12:12 am, Rey Bango [EMAIL PROTECTED] wrote: jQuery Team Member Jörn Zaefferer has had a jQuery article published in Javamagzin

[jQuery] Re: Internet Explorer and height()

2007-08-10 Thread Brandon Aaron
If the 70% is relative to the height of the window, you could just get the height of the window and multiply it by .7. Just include dimensions and run something along the lines of this: $(function() { var fixHeight = function() { $('#foo').height( $(window).height()*.7 ); };

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-10 Thread Mario Moura
Ok Sorry. was suggestion. My mistake. Sorry again. Back to work or back to hacking. ; ) Cheers Mario 2007/8/10, Stephan Beal [EMAIL PROTECTED]: On Aug 10, 3:31 am, Mario Moura [EMAIL PROTECTED] wrote: Please John Resig ask to plugin providers make plugins to work with all browsers

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-10 Thread Stephan Beal
On Aug 10, 3:31 am, Mario Moura [EMAIL PROTECTED] wrote: Please John Resig ask to plugin providers make plugins to work with all browsers (or FF and IE at least) if no please post JQuery.NamePlugin(DEV).js or something like this. DEV to Not Stable. Hi, Mario! Some comments: a) Whether or

[jQuery] Image loaded

2007-08-10 Thread b0bd0gz
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); $('.full_img').attr(src,

[jQuery] Re: scollovers animation

2007-08-10 Thread Klaus Hartl
Stephan Beal wrote: Hiya! i just found this via digg: http://www.scrollovers.com/ and i thought that might be a tempting animation effect for one of the more talented plugin authors out there. The implementation code is 175 lines long, but i'd bet that one of you jQuery gurus can get it

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

2007-08-10 Thread agent2026
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 page will show in the

[jQuery] [NEWS] Great Book Review of Learning jQuery

2007-08-10 Thread Rey Bango
It looks like you can add Ajaxian to the list of folks that are raving about Jonathan Chaffer and Karl Swedberg's new book, Learning jQuery. They've posted a very positive article about the book. Be sure to check it out here: http://ajaxian.com/archives/review-of-learning-jquery Great work

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

2007-08-10 Thread Ganeshji Marwaha
olaf, jquery and javascript in general is for developers pal... plugins make developers job easier and reusable, thats all. In any case, only a developer can truly get the benefit of any javascript library, even as easy to use as jquery. But, assuming that is not the case, what is ur suggestion?

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-10 Thread SeViR
Also it works for me. Tested in IE 7 WinXP SP2 Ganeshji Marwaha escribió: why do u say it doesn't work in IE. It seems to work fine for me. Granted, i just saw the demo. -GTG On 8/9/07, *Mario Moura* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: -- Best Regards, José Francisco

[jQuery] CSS and DIV position

2007-08-10 Thread [EMAIL PROTECTED]
Hi people, I would like to develop a web application that would let users configure their own page, ie, they have a certain number of divs available and they can drag it all over the page to the position they desire. So I would like to know how to retrieve the div positions once the

[jQuery] Re: Partial Accordion Possible?

2007-08-10 Thread Sam Collett
That doesn't collapse anything initially. If you click on 'Heading 2' or 'Heading 3' it actually collapses 'No sub items here' and 'Or here' (which should always show). On Aug 10, 4:20 pm, Sean Catchpole [EMAIL PROTECTED] wrote: On 8/10/07, Sam Collett [EMAIL PROTECTED] wrote:

  1   2   >