[jQuery] Re: Superfish menu extremely slow/clunky in IE6 with wordpress

2007-12-19 Thread Joel Birch
Hi John, long time no talk :) The dodgy behaviour on that page is very strange. Makes me think it could be due to HTML errors. I think if you can make the code validate we can rule out lots of possibilities and if it still doesn't work, package up that page's HTML, CSS and JS and send that test

[jQuery] Re: Looping ajax requests

2007-12-19 Thread Michael Geary
Sorry, Sam, that's a good try but it's not the solution. If you mentally step through Ryura's code, keeping in mind that a $.ajax success callback is called asynchronously - not at the time the $.ajax call is made - you'll see what went wrong: First, the loop is executed: i = 1 while i =

[jQuery] Re: jQueryish for Effect.CashRegister()

2007-12-19 Thread Karl Swedberg
Glen Lipka put together something that was similar (but way cooler) a while ago. Glen, do you still have that somewhere on your site? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 19, 2007, at 3:18 AM, R. Rajesh Jeba Anbiah wrote: Anyone

[jQuery] Re: jquery not working in IE

2007-12-19 Thread Eridius
can anyone tell me if they see anything wrong with this code? Eridius wrote: This particular code in not work IE 6/7 but works in firefox. Can't get a demo up right now but any suggestions are welcomed. script type=text/javascript function ie_fix() { //update filters

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread RobG
On Dec 19, 11:49 am, Monica [EMAIL PROTECTED] wrote: Newbie here... I have a table $(#searchDataTable), each row has an unique id. What is the JQuery code to get the value(text) of particular cell in this table? Don't forget that every row has rowIndex and sectionRowIndex properties and

[jQuery] Re: jquery not working in IE

2007-12-19 Thread Karl Swedberg
Hi Eridius, I don't see anything obviously wrong with the code. Can you specify what is (or is not) happening when you attempt this with IE 6/7? In other words, how is it not working? Do you get an error, or does it fail silently? Also, just for troubleshooting purposes, could you

[jQuery] Re: jquery not working in IE

2007-12-19 Thread Eridius
The empty does not take effect or anything after it which is the first first that should happen. I am about to start just commenting code and start alerting stuff and see what happens. Karl Swedberg-2 wrote: Hi Eridius, I don't see anything obviously wrong with the code. Can you

[jQuery] Re: jquery not working in IE

2007-12-19 Thread Eridius
I figured it out, the #select_... was the span tag I was emptying which included the select box. Even tho I hate IE, it is a way makes you a better programmer because you have to code correctly where firefox is forgiving a knows what you meant. I did have to change the .change to a livequery

[jQuery] Re: jquery not working in IE

2007-12-19 Thread Karl Swedberg
Excellent! Glad you got it working. --Karl On Dec 19, 2007, at 9:17 AM, Eridius wrote: I figured it out, the #select_... was the span tag I was emptying which included the select box. Even tho I hate IE, it is a way makes you a better programmer because you have to code correctly

[jQuery] Re: Cycle plugin and manually generated paging links?

2007-12-19 Thread Andy Matthews
That 3rd demo is exactly what I'm looking for Mike. Thanks! You ever consider exposing a method by which a specific link can call a specific slide, regardless of the order of the links? $('li a.one').click(function(){ cycle.load(3); }); Something along those lines? andy

[jQuery] Problem with IE6 - a click event doesn't work

2007-12-19 Thread Brandnew
Hello, I'm having trouble to make IE accept a click event while everythink works fine with Mozilla. Here's a sample of my code : $('#add').click(function(){ $('#spinner').show(); $('#dernier_enregistrement').hide(1000); var type='add';

[jQuery] Re: serializeArray problem with IE7

2007-12-19 Thread elias
Hi, found the solution for my problem, surprise, surprise: form html was invalid meaning that closing tag of form was form :) FF was able to parse DOM, IE not. Mike, havent tested but I think that $(#editDiv form).serializeArray() works also. Cheers Olli On Dec 18, 5:30 pm, Mike Alsup [EMAIL

[jQuery] Best technique? .load() and div height...

2007-12-19 Thread Micky Hulse
Hi, I've got a few questions here... When I .load() text into a div -- basically swapping one bit of text for another, -- the div will collapse for a second while the textual content loads and switches... ...What would be the best way to retain the div size during .load()? My best guess would

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-19 Thread Daniel Keel
Thanx Jeffrey, That's how I understand it. But someone sad that with Dean Edwards solution you don't get FOUC and therefore you don't need the workaround with the div's set to display: none. In fact he said the Dean Edwards solution does this (and it's equal to the $(document).ready ): - DOM is

[jQuery] Superfish submenus flowing outside of browser window

2007-12-19 Thread Luke Brookhart
Can anyone help me with the Superfish plugin. I absolutely love the way it works. I just have one issue with the submenu appearing outside the browser window. Since my menu is right aligned, and since the submenu does not match the width of the top level menu (because I wanted to keep the top

[jQuery] Re: XUL jQuery-1.2.1 html manipulation issue

2007-12-19 Thread Carl Taylor
I'm guessing that XUL does not use the same renderer. But it does use a fairly standard one: innerHTML. When I use the pleonastically verbose DOM method: {{{ document.getElementById('todo-list').innerHTML = 'BAAR'; }}} Everything works fine. I suppose I would have to hack the jQuery library

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread don Jao
Hi Wizzud, thank you for youre reply. Unfortunatelly, it doesn't work. That way i behave exactly the same way. Probably, this is something impossible. All the best. Wizzud wrote: Try using hover() instead. Hover() has built-in code for testing whether the element under the mouse has

[jQuery] Interface droppables versus UI Droppables

2007-12-19 Thread Karl Delandsheere
Hi! I'm moving a project from Interface to UI. When it was working with Interface, I used to call .recallDroppable when the DOM was modified (display new droppables and so on) while dragging. The comment of .recallDroppable is to the point :D... * useful when the positions/dimensions for

[jQuery] Re: Looping ajax requests

2007-12-19 Thread haur
may be ... http://example.com/?one=5740two=4/page.htmlhttp://example.com/5740/4/page.html 2007/12/19, Ryura [EMAIL PROTECTED]: Got a problem when looping ajax requests. I have probably made a mistake somewhere but I can't find it. dt=5; for (i=1;i=dt;i++) { $.ajax({ type: GET, url:

[jQuery] Re: Looping ajax requests

2007-12-19 Thread David Decraene
the alerting is because of the asynchronous callback: it only triggers success when it receives response from the server, and by that time i already equals 5 (already looped multiple times), I think. Why you do not get that last page beats me, try for (var i=1;i6;i+ +) David Decraene

[jQuery] Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
i want to set up a photo gallery for a clients site and would like to use the http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox plugin or somethign similar. that par is easy but i would like to be able to use images from flickr. that way the client would be able to update

[jQuery] JCarousel prev and next images problem

2007-12-19 Thread Tal
Hi All, I've mannaged to get it to work perfectly in IE but had to make minor adjustments for Mozilla Fireforx 2.0.0.11. The only problem i still encounter is that for some reason the arrow images for the next and previous do not show. Does anyone have any idea on what can it be and how can

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: bdee1 [mailto:[EMAIL PROTECTED] i want to set up a photo gallery for a clients site and would like to use the http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox plugin or somethign similar. that par is easy but i would like to be

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
yea i came across that one too but i don't really care for the style of their lightbox effect. i greatly prefer the type of the one i posted above. really if i were to use the jquery lightbox effect then i guess all i would need is a jquery plugin or script that would allow me to pull a set of

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Check out my jqAlbumParser plugin, it will allow you to parse out a flickr album and then execute any additional plugin: http://benjaminsterling.com/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/ On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: i want to set up a photo gallery

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread Karl Swedberg
Hi don, I just approximated your page's markup and used the .hover() method. It's working fine for me. Would you mind testing here and letting us know if you still see the problem? ... http://test.learningjquery.com/fadeto.html Thanks, --Karl _ Karl Swedberg

[jQuery] my plugin not working

2007-12-19 Thread Eridius
I am working on an ajaxified paginator plugin using jquery. here is my code: $.paginator = function(options) { this.options = { 'url': null, 'replace_id': null, 'total_items': 0, 'items_per_page': 10,

[jQuery] Prev Next Arrow Images are not showing in Mozilla Firefox 2.0

2007-12-19 Thread TAL ORLIK
Hi All, I've also posted a topic on the group page, but i figured it wouldn't hurt to send an email out as well. I managed to get the jcarousel to work in IE with no problems i did however needed to make some adjustments when it came to Mozilla Firefox. The only problem i got left with is that

[jQuery] Re: Problem with IE6 - a click event doesn't work

2007-12-19 Thread Brandnew
I just used Run unit tests on the website where I found the plugin for Ajax form. With Mozilla it's working fine but then with IE6, it show some mistakes (differents each time strangely). Here the link : http://www.malsup.com/jquery/form/test/ But i don't really understand what that means, it

[jQuery] .GetJSON, retrieve a list of key/value from JSON object?

2007-12-19 Thread Mathieu Dumais-Savard
Hi, I have no problem using jSON so far except that I am looking for a way to browse the items sent from the server to the client in such fashion: foreach key (keys myJSONobject) { var value = (myJSONobject[keys]) ; } Any hint? Thanks!

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
that looks promising but i don't think i need to hook the results into a plugin - i just want to output the results as links for use with lightbox. so if i don't hook into another plugin, how do i access the results? bdee1 wrote: yea i came across that one too but i don't really care for

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
By default, the output will look something like ullia href=pathToFullSizeimg src=pathtoimage//a/li.../ul And you can style it how ever you want. If you want them to click to open to lightbox, you would do something like: $(.jqAlbumParser).jqAlbumParser({ pluginExec : function(){

[jQuery] Re: .GetJSON, retrieve a list of key/value from JSON object?

2007-12-19 Thread Scott Trudeau
for(key in myJSONobject) { var value = myJSONobject[key]; } should get you started ... On Dec 19, 2007 11:00 AM, Mathieu Dumais-Savard [EMAIL PROTECTED] wrote: Hi, I have no problem using jSON so far except that I am looking for a way to browse the items sent from the server to the

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
ok that should work - now one last question... i dont see the download link for the plugin anywhere. bmsterling wrote: Check out my jqAlbumParser plugin, it will allow you to parse out a flickr album and then execute any additional plugin:

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
I guess a download link would have been useful: http://benjaminsterling.com/articles/jqAlbumParser/common/js/jqAlbumParser.js Thanks for catching that. On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: ok that should work - now one last question... i dont see the download link for the plugin

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-19 Thread Jeffrey Kretz
Ah. I don't believe that's the case, but that's only because of my experience, not because I really know how these things work internally. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Keel Sent: Wednesday, December 19, 2007 12:17

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
ok i got the download link and now i am looking at this code: i am not sure i follow what you are saying here: $(.jqAlbumParser).jqAlbumParser({ pluginExec : function(){ $('a', this).lightBox();// this refers to the list just created } }); so is this saying that

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
nevermind my last post about not understanding yoru code - that was just me being stupid. i just looked at the lightbox plugin in more detail and answered my own questions duh. bmsterling wrote: I guess a download link would have been useful:

[jQuery] Re: my plugin not working

2007-12-19 Thread Eridius
I have it working, forget the new keyword Eridius wrote: I am working on an ajaxified paginator plugin using jquery. here is my code: $.paginator = function(options) { this.options = { 'url': null, 'replace_id': null,

[jQuery] trouble with jquery lightbox plugin

2007-12-19 Thread bdee1
i am trying to work with the http://leandrovieira.com/projects/jquery/lightbox/ jquery lightbox plugin the overall effect is working well but for some reason is is not showing any of the images. at the top of jquery.lightbox.js file there are some lines that let you configure the path to the

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Cool; I have not tested it using the lightbox plugin, can you let me know how it turns out? On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: nevermind my last post about not understanding yoru code - that was just me being stupid. i just looked at the lightbox plugin in more detail and

[jQuery] Re: Converting XML to a string with jQuery

2007-12-19 Thread Tony
Try this, //IE if (window.ActiveXObject) { var string = xmlData.xml; } // code for Mozilla, Firefox, Opera, etc. else { var string = (new XMLSerializer()).serializeToString(xmlData); } On 19 Дек, 18:02, Stefan [EMAIL PROTECTED] wrote: Hello, I have some data in XML representation

[jQuery] Re: Tablesorter dateFormat

2007-12-19 Thread Christian Bach
Hi Jay, This will solve your problem: // add parser through the tablesorter addParser method $.tablesorter.addParser({ // set a unique id id: 'dates', is: function(s) { // return false so this parser is not auto detected return false; },

[jQuery] Need help with birthdate validation

2007-12-19 Thread sothis
Hello, Awhile ago, I clumsily implemented Jorn's fantastic validation plugin to validate a birthday field. The implementation wasn't hard, but getting the page in general to work how I want is tricky. I'm wondering if anyone has an idea in how I might accomplish these goals: 1. Validate based

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
this worked out pretty well - i had some trouble gettign the images to load correctly in the lightbox plugin but that was something in the lightbox plugin i had to tweak - not yours. i don't have it posted online yet - i am just playing around locally. but in the next few weeks you will see it

[jQuery] OT: Nashville, TN Flex User Group presents Flex 3 and AIR pre-release tour with Ben Forta

2007-12-19 Thread Andy Matthews
For any of you that might live in, or around Nashville, TN, the Nashville Flex User Group is hosting the upcoming Flex 3 and AIR pre-release tour with Adobe's Ben Forta on January 24th. More details can be found on the UG website: ( http://www.615flex.com/special-events/

[jQuery] Re: trouble with jquery lightbox plugin

2007-12-19 Thread bdee1
ok i got it working. it seems that the path to the images has to be set relative to the html page. this seems a bit problematic if youwanted to use the plugin on different pages within your site. you would have to have a seperate .js file for each page you want to access it from and in those

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
any way i can make the thumbnails larger? or is that just the size they come in from flickr? bmsterling wrote: Cool; I have not tested it using the lightbox plugin, can you let me know how it turns out? On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: nevermind my last post about not

[jQuery] Re: rounded corners on images with jquery?

2007-12-19 Thread bdee1
thanks for the post - i will give that a shot - can i apply a border to that though? malsup wrote: Here's an example of how to use the jQuery Corner plugin on an image: http://www.malsup.com/jquery/corner/image.html Mike On Dec 17, 2007 7:12 PM, bdee1 [EMAIL PROTECTED] wrote:

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
Set the tnSize param to 0, 1, 2 for a different size: * @param Integer tnSize * This param takes in 0, 1,or 2 and will reference one of the * thumbnail spots for picasa or flickr * picasa: 0 == 72x48, 1 == 144x66, 2 == 288x192 * flickr:

[jQuery] Re: Sliding Panels Attempt

2007-12-19 Thread Glen Lipka
I had a demo that was based on click. http://www.commadot.com/jquery/faq.php But I modified it using the hoverIntent plugin to be more like you are describing. http://www.commadot.com/jquery/faqHover.php Does this help? Glen On Dec 18, 2007 4:04 PM, kache79 [EMAIL PROTECTED] wrote: hey

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
where do i find that? i don't see those lines in the js file. bmsterling wrote: Set the tnSize param to 0, 1, 2 for a different size: * @param Integer tnSize * This param takes in 0, 1,or 2 and will reference one of the * thumbnail spots for picasa or flickr

[jQuery] Autocomplete: matching on only part of the displayed text rather than entire row

2007-12-19 Thread Mark
I'm working with the jQuery autocomplete plug-in and am trying to implement a search box similar to the Multiple Birds input on the following example site: http://dev.jquery.com/view/trunk/plugins/autocomplete/ I haven't been able to figure out how the matching logic is applied only to the

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread Monica
Thanks for the replies. So tell me, how did you know the answers. I have the Learning jQuery book by Chaffer and Swedberg. I poured over the table manipulation chapter with no clarity!!! So the question is : What'e the best/smart way to learn JQuery ins and outs? Go through the jquery.js?

[jQuery] Re: Converting XML to a string with jQuery

2007-12-19 Thread McLars
I don't know about jQuery, I doubt it, but apparently IE does have an XMLSerializer. Of course, the syntax would be different. You can try searching for jscript xmlserializer and see if that yields anything useful. But then you'd probably be out of luck with Safari, Opera, etc. You might end up

[jQuery] Re: .GetJSON, retrieve a list of key/value from JSON object?

2007-12-19 Thread Mathieu Dumais-Savard
Thanks! That's exactly what I was looking for!!! What data_type really is myJSONobject??? Shouldn't this be included in the datatype section of the Jquery documentation under JSON object section??? Where can I find complete reference for this object? Thanks! - Mathieu On Dec 19, 11:31 am,

[jQuery] Re: Is JQGrid available

2007-12-19 Thread Blarm
Thanks for the replies.

[jQuery] tablesorter - hidden TD's

2007-12-19 Thread Jay Fallon
Does anyone know if it's possible to sort a table, using tablesorter, based on the content inside hidden TD's. I'm trying to write a parser that will make date format dd-mon- read as dd/mm/ and I'm running out of viable options. If anyone knows if this can be done, I'd sure appreciate a

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread David McFarland
Don't forget that every row has rowIndex and sectionRowIndex properties and every cell a cellIndex property. These are very much faster than CSS-style selectors, e.g.: $($('#tableID').rows[x].cells[y]).text(); Hi Rob, I've never seen that syntax before, and I can't get it to work. Do

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread Penner, Matthew
You can grab each cell by its individual row and column. This is what I've used in the past and it worked quite well. var cell = $('tr:eq(' + row + ') td:eq(' + column + ')'); Where row and column are variables defined above. Matt Penner -Original Message- From:

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
oh ok i see what you mean now. seems to work. now of course if i use one of the other sizes, the pic are no longer uniform in width. so is there a way that i could style it so that the li's are always 200px in width with the image centered inside it? i tried adding: $('li',

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
You would do something like: $('a.jqAlbumParser').jqAlbumParser({ tnSize:1 }); On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: where do i find that? i don't see those lines in the js file. bmsterling wrote: Set the tnSize param to 0, 1, 2 for a different size: * @param Integer

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread Karl Swedberg
Hi Monica, We use .text() to get and set a table cell's value a number of times in the table manipulation chapter. Here is a code snippet from that chapter that sets a div's content with text() and checks the value of a cell with text(): $.each(keywords, function (index, keyword)

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
No I don't how to center the image in the LI without doing a bunch of math, but what I normally do in my css is set the width and height of the LI and set the overflow:hidden. I am sure there is some other css hackery that can be done, but I am not an expert. On 12/19/07, bdee1 [EMAIL PROTECTED]

[jQuery] Re: using .load to replace div contents

2007-12-19 Thread Glen Lipka
Put .empty() before the load. That will clear it out. Glen On Dec 18, 2007 6:00 PM, rolfsf [EMAIL PROTECTED] wrote: I'm doing some simple ajax using .load --- clicking on a table row loads some html from an external file into a div. My question - do I need to remove the contents of the

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread bdee1
ok thats cool - i can fiddle with that. one other questions though how would i go about adding an onmouseover event handler to the images? by the way - if i didnt say so before - this is a really slick little plugin - i just have to work out the styling. bmsterling wrote: No I don't

[jQuery] Re: Best technique? .load() and div height...

2007-12-19 Thread Glen Lipka
The delay, I think it's a new member thing. Mine show up right away, I think. I think your technique sounds good. The situations that I have done that were fixed height. Glen On Dec 18, 2007 9:33 PM, Micky Hulse [EMAIL PROTECTED] wrote: Hi, I've got a few questions here... When I

[jQuery] Re: Need help with birthdate validation

2007-12-19 Thread Glen Lipka
I actually like the UX of this plugin: http://digitalbush.com/projects/masked-input-plugin It has a date input. It works well to supplement Jorns plugin. Glen On Dec 19, 2007 10:28 AM, sothis [EMAIL PROTECTED] wrote: Hello, Awhile ago, I clumsily implemented Jorn's fantastic validation

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Marshall Salinger
That is freaking sweet! You rock Stefan. Stefan Petre wrote: Hi, I did a small game (it was a test for a client), about 6kb of code. http://www.eyecon.ro/slotmachine/ Stefan

[jQuery] Stupid little game :)

2007-12-19 Thread Stefan Petre
Hi, I did a small game (it was a test for a client), about 6kb of code. http://www.eyecon.ro/slotmachine/ Stefan

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Andy Matthews
Dammit Stefan! I'm not going to get anything done the rest of the day. :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Wednesday, December 19, 2007 2:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] Stupid little

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Erik Beeson
Fun, thanks for sharing :) --Erik On 12/19/07, Stefan Petre [EMAIL PROTECTED] wrote: Hi, I did a small game (it was a test for a client), about 6kb of code. http://www.eyecon.ro/slotmachine/ Stefan

[jQuery] Re: Release: Validation plugin 1.1.2

2007-12-19 Thread Jörn Zaefferer
shapper schrieb: Hello, isn't it possible to use a Regex expression anymore? I need to validate a few inputs text using a regex expression. There wasn't a regex method ever - by design. I still think its much better to encapsulate any (weird and hard to read in a few seconds) regex in a

[jQuery] Re: trouble with jquery lightbox plugin

2007-12-19 Thread bdee1
anybody know of a way to add captions with lightbox plugin? bdee1 wrote: i am trying to work with the http://leandrovieira.com/projects/jquery/lightbox/ jquery lightbox plugin the overall effect is working well but for some reason is is not showing any of the images. at the top of

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-19 Thread Benjamin Sterling
You can set up mouseovers in the param I sent you earlier. $(.jqAlbumParser).jqAlbumParser({ pluginExec : function(){ //Assuming you want the MO on the A tag $('a', this) .mouseover(function(){ // mouse over stuff }) .lightBox();// this refers to the list just created } }); On

[jQuery] Re: Need help with birthdate validation

2007-12-19 Thread Jörn Zaefferer
Hi, in addtion to using the masked-input plugin you may want to provide a preview of the input. That is, I'll just enter something without knowing what exact format the application expects and can take a look at the preview if my input is right or not. A library that may help with making

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Benjamin Sterling
I think that game is rigged, I lost all my money. :) On 12/19/07, Erik Beeson [EMAIL PROTECTED] wrote: Fun, thanks for sharing :) --Erik On 12/19/07, Stefan Petre [EMAIL PROTECTED] wrote: Hi, I did a small game (it was a test for a client), about 6kb of code.

[jQuery] Re: trouble with jquery lightbox plugin

2007-12-19 Thread Benjamin Sterling
I looks like you just add a title to the A tag. On 12/19/07, bdee1 [EMAIL PROTECTED] wrote: anybody know of a way to add captions with lightbox plugin? bdee1 wrote: i am trying to work with the http://leandrovieira.com/projects/jquery/lightbox/ jquery lightbox plugin the overall

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Jörn Zaefferer
Benjamin Sterling schrieb: I think that game is rigged, I lost all my money. :) I stopped at 65 credits! Ha! I only lacks the typical sounds[1], though. Jörn [1] http://dev.jquery.com/view/trunk/plugins/sound/

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Stefan Petre
Benjamin Sterling wrote: I think that game is rigged, I lost all my money. :) On 12/19/07, Erik Beeson [EMAIL PROTECTED] wrote: Fun, thanks for sharing :) --Erik On 12/19/07, Stefan Petre [EMAIL PROTECTED] wrote: Hi, I did a small game

[jQuery] Re: How to find a table cells value?

2007-12-19 Thread RobG
On Dec 20, 2:25 am, David McFarland [EMAIL PROTECTED] wrote: Don't forget that every row has rowIndex and sectionRowIndex properties and every cell a cellIndex property. These are very much faster than CSS-style selectors, e.g.: $($('#tableID').rows[x].cells[y]).text(); Sorry,

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Benjamin Sterling
lol That is a really nice piece of work, I see myself wasting at least the next hour on it. On 12/19/07, Stefan Petre [EMAIL PROTECTED] wrote: Benjamin Sterling wrote: I think that game is rigged, I lost all my money. :) On 12/19/07, Erik Beeson [EMAIL PROTECTED] wrote: Fun, thanks

[jQuery] Re: Interface

2007-12-19 Thread brassica
Thank you Richard I wasnt aware that it was no longer supported Makes sense if it isnt :) Looking into UI now

[jQuery] Re: Tablesorter dateFormat

2007-12-19 Thread Jay Fallon
Hi Christian, thanks for the follow up, I implemented the script as you described and it's still not sorting correctly: http://jayfallon.net/tablesorter/tablesorter.html On Dec 19, 1:21 pm, Christian Bach [EMAIL PROTECTED] wrote: Hi Jay, This will solve your problem: // add parser through

[jQuery] Create unique class for links inside the tabs?

2007-12-19 Thread Reuben
Hi Bernd: Thanks for your great work. I'm new to CSS and jQuery, so forgive me if there is an obvious answer to this. I'm trying to replace the inside contents of a tab section with individual links. However, as soon as I throw the a tags on something, the link inherits the class of the tab

[jQuery] Re: Looping ajax requests

2007-12-19 Thread Ryura
Thanks for all the responses everyone! I found an alternate solution (probably proprietary to the situation I was in) but I'll look to use Michael's method in the future.

[jQuery] Re: Multiple jCarousel 's on one page

2007-12-19 Thread Josh V
help. On Nov 30, 4:55 pm, Josh V [EMAIL PROTECTED] wrote: anybody? On Nov 29, 5:03 pm, Josh V [EMAIL PROTECTED] wrote: hi. i have a site where i need two different carousels on the same page. each carousel has a different purpose with different items and different controls. how can i

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread don Jao
Hi Karl, Thank you very much for your reply. I don't know how can I say how much I appreciate you're answer! I rewrote the code from a scratch and it worked, using .hover(). Weird thing that 1st time I was trying to make it, i used exactly .hover(). When it didn't work, i switchet to .mouseover

[jQuery] Re: My First jQuery Plugin..... jQuery.Sheet, a spreadsheet for jQuery

2007-12-19 Thread Robert-CFL
Actually, I thank you for the criticism. The reason that I went ahead and posted it was because it is (in reality) past a beta state in that it works and at TrimPath it's in version 1.0.14. It's in beta in my eyes because I'm porting it over from standard JavaScript and the additional jQuery

[jQuery] Re: Binding this inside anonymous functions

2007-12-19 Thread Byron
Just to clarify apply is a native javascript function implemented in 1.3 the second parameter isnt actually needed (its for defining arguments) anyway i decided to jquerify it and ended with this: (function ($) { $.extend($.fn, { apply :function (fn, args) { return

[jQuery] Re: Can't set CSS left for IE6

2007-12-19 Thread cfdvlpr
Oh, I should mention that ## is there instead of # because the jQuery is inside a cfoutput tag. On Dec 19, 2:17 pm, cfdvlpr [EMAIL PROTECTED] wrote: if( $.browser.msie (jQuery.browser.version 7.) ) { $('div##rightShoppingCartButton').css(left,582px); } Can anyone see why this

[jQuery] Can't set CSS left for IE6

2007-12-19 Thread cfdvlpr
if( $.browser.msie (jQuery.browser.version 7.) ) { $('div##rightShoppingCartButton').css(left,582px); } Can anyone see why this doesn't seem to be recognized at all by IE6?

[jQuery] Re: Looping ajax requests

2007-12-19 Thread Sam Sherlock
I'd like to say thanks to Michael too, for your informed perspective and advice - S On 19/12/2007, Ryura [EMAIL PROTECTED] wrote: Thanks for all the responses everyone! I found an alternate solution (probably proprietary to the situation I was in) but I'll look to use Michael's method in

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread Karl Swedberg
On Dec 19, 2007, at 3:38 PM, don Jao wrote: Thank you very much for your reply. I don't know how can I say how much I appreciate you're answer! Hi Don, It's not a problem at all. I'm glad it's working now for you! Thank you once again. I feel sorry for time you spend on that, but it

[jQuery] Re: Create unique class for links inside the tabs?

2007-12-19 Thread Jake McGraw
perhaps you could apply a class to any inserted anchors, something like: JavaScript: $(li.tab).append('a href=/index.htm class=resetA Link/a'); CSS: a.reset { background:#FFF !important; // So on and so forth } - jake On Dec 19, 2007 2:40 PM, Reuben [EMAIL PROTECTED] wrote: Hi Bernd:

[jQuery] Re: Stupid little game :)

2007-12-19 Thread Flesler
Great game. It doesn't completely work in IE, right ? I don't see the wheels. Works perfect in FF. Ariel Flesler On Dec 19, 5:41 pm, Stefan Petre [EMAIL PROTECTED] wrote: Hi, I did a small game (it was a test for a client), about 6kb of code.http://www.eyecon.ro/slotmachine/ Stefan

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread abba bryant
I read this thread and then closed the tab and instantly realized that I needed to say something. I have been a long time reader - not so often contributor to the list here and I consistently and often read responses like this thread from various other contributors. Thank you guys so much for

[jQuery] Re: Help Test jQuery 1.2.2

2007-12-19 Thread John Resig
We'll see - we're finishing up some last minute bugs. We have a big change about to land, so we might do a quick beta 2 sanity check before going live. --John On Dec 19, 2007 6:31 PM, cfdvlpr [EMAIL PROTECTED] wrote: Is the full release expected today or tomorrow?

[jQuery] Re: My First jQuery Plugin..... jQuery.Sheet, a spreadsheet for jQuery

2007-12-19 Thread Robert-CFL
Here is a link to a running version of the plugin: http://www.weebly.com/uploads/3/1/3/8/313814/jquery.sheet.html On Dec 19, 3:02 pm, Robert-CFL [EMAIL PROTECTED] wrote: Actually, I thank you for the criticism. The reason that I went ahead and posted it was because it is (in reality) past a

[jQuery] Re: Best technique? .load() and div height...

2007-12-19 Thread Micky Hulse
Hey Glen, thanks for the reply, I really appreciate the advice and feedback. :) I will tinker with my script and post-back my findings... I may end-up using a fixed height, but there may be a situation where the loaded content grows bigger than the set height... so I would like to impliment some

  1   2   >