[jQuery] Problem with Form and Validate plugins

2009-06-01 Thread Matt
Ok, this is my last resort, as I've been working on this for a while and am completely stumped. I'm probably just doing something stupid that I haven't noticed, so maybe a fresh pair of eyes would help. Essentially my problem is this: on this website I'm developing, users can submit photos for a

[jQuery] Tablesorter and zebra - does not stripe rows on initial sort

2009-05-27 Thread Matt Brown
With a tablesorter config that looks something like this: $(#table).tablesorter({ cssHeader: sortAble, cssAsc: sortAsc, cssDesc: sortDesc, headers: {3: {sorter: 'time'}}, sortList: sortOrder, widgets: ['zebra'], widgetZebra: { css:

[jQuery] Re: Tablesorter and zebra - does not stripe rows on initial sort

2009-05-27 Thread Matt Brown
Ok so after actually testing if the patch mentioned in that other posting fixes this problem, I can safely say that it does fix my issue :) On May 27, 12:21 pm, Matt Brown matt.br...@citrix.com wrote: With a tablesorter config that looks something like this: $(#table).tablesorter

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Matt Brown
I'm pretty sure it's invalid HTML/CSS/whatever to have elements whose IDs start with a number. Trying using a regular name, such as element1. On May 27, 4:03 pm, bayadmin admin.baynet...@gmail.com wrote: Hi GaVrA, per your suggestion I added the # sign to the function and it did not make any

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Matt Brown
If you enable Firebug, you'll see that the page has a Javascript error: $ is not defined. This is because your server is returning 404's for: http://www.baynetlibs.net/wp/membership/membership-list/library/scripts/jquery-latest.js

[jQuery] Getting the child element on click

2009-05-26 Thread Matt
can I tell jQuery to just return the p element within that div (and not all p elements which are inside a .feature class)? Thanks, Matt

[jQuery] Re: Getting the child element on click

2009-05-26 Thread Matt
You're a hero. I didn't even know about the slideToggle() function, I was using an if statement to test if the p was hidden - thanks a ton. Matt On May 26, 7:57 pm, M.M. mario.maru...@gmail.com wrote: $('.feature h2').click(function() {     $(this).siblings('p').slideToggle(); return false; });

[jQuery] Resizable Issues.

2009-05-22 Thread Matt
If you have the 'containment' option set as well as the 'alsoResize' option, the containment will prevent the main element from resizing past its borders but the alsoResize element will still resize past its borders. Is there a way to fix this? Thanks in advance, Matt Mueller

[jQuery] Re: jQuery, MooTools, and Prototype - A Comparison

2009-05-21 Thread Matt Kruse
popularity of the different frameworks. There is always some safety in choosing the market leader and if you are going in blind with no desire to do an in-depth analysis of each option, then choosing jQuery would probably be your safest best. IMO, Matt Kruse On May 21, 2:05 pm, kiusau kiu...@mac.com

[jQuery] Re: update from 1.2.6 to 1.3.2 $('select') - strange!?

2009-05-19 Thread Matt Kruse
You should post a simple test case, because the simple test case I created does not show this problem. Matt Kruse On May 19, 9:33 am, asrij...@googlemail.com asrij...@googlemail.com wrote: Hi Guys, just started to upgrade my site jquery version to the latest, now I'm facing some strange

[jQuery] cluetip problem on iPhone/Mobile Safari

2009-05-19 Thread Matt Riley
out how to unload the cluetip library. Any suggestions would be most welcome. Thank you! -Matt

[jQuery] Re: New Plugin with IE problem

2009-05-15 Thread Matt Kruse
On May 14, 5:17 am, sebastien creme sebastien.cr...@gmail.com wrote: Dynamic colspan setted via style property seems not work on IE. For some reason, jQuery currently maps rowspan-rowSpan, but not colspan-colSpan. http://dev.jquery.com/ticket/4397 Matt Kruse

[jQuery] Get the Value of Custom Attribute from Parent

2009-05-14 Thread Matt M.
Hello, I have been learning jQuery and have been loving it so far. But can't figure out how to do the following... 1) Find the a inside a ul that has an active class. 2) Grab the value from the parent li and put it into a variable to be used elsewhere. Here is the example markup... ul

[jQuery] Re: Get the Value of Custom Attribute from Parent

2009-05-14 Thread Matt M.
That works great. Thanks! On May 14, 3:01 pm, Bryan stern@gmail.com wrote: Try this var ans = $(#carousel li a.active).parent().attr(carouselindex); Cheers, Bryan On May 14, 2:49 pm, Matt M. quink...@gmail.com wrote: Hello, I have been learning jQuery and have been loving it so

[jQuery] jQuery .addClass question

2009-05-12 Thread Matt
This seems like such a simple basic task, but I can't seem to get the syntax correct. I have a menu, and using jQuery it adds a class (.current) to the link that corresponds to the current page. This works for all pages except the page in a subdirectory (link below marked with a *).

[jQuery] Re: Problem with jQuery in Firefox

2009-05-08 Thread Matt Critchlow
obj.find(input[name='plan_price']:radio).click(); //is creating the recursive loop On May 8, 12:59 am, MC Lueppers mdob...@gmail.com wrote: Hi, I'm in a development phase of a file sharing portal and I have a problem with jQuery on the following page:http://share.home.hive-net.net/pricing.

[jQuery] Get attribute of the parent element into a variable

2009-05-08 Thread Matt M.
Hi, All. Kind of new to jQuery, but having fun with it. Would like to learn how to do the following... 1) Target the active a. 2) Find the parent li. 3) Grab the value of the attribute jcarouselindex and put it in a variable to be used elsewhere. Sample code below... ul id=carousel li

[jQuery] NEW jQuery Cheat Sheet for 1.3.2

2009-05-07 Thread Matt Kruse
I've updated my previous cheat sheet to be in line with jQuery 1.3.2. I think it's more useful than other cheat sheets that simply dump method names, but hey, that's personal preference ;) http://www.javascripttoolbox.com/jquery/cheatsheet/ Enjoy Matt Kruse

[jQuery] Re: Custom JSON sanitizing during $.ajax

2009-05-07 Thread Matt Critchlow
try changing your parameter in the success method to something other than return and see what happens.. On May 7, 10:40 am, Eli Perelman e...@cobaltds.net wrote: Hello All, I am trying to complete an Ajax request in which PHP returns a JSON- formed string. One of the variables inside the

[jQuery] Re: The jQuery Object, Namespaces, and Program Modules -- Connecting the Dots Between jQuery and Javascript

2009-05-05 Thread Matt Kruse
understand what is going on. Matt Kruse

[jQuery] Re: The jQuery Object, Namespaces, and Program Modules -- Connecting the Dots Between jQuery and Javascript

2009-05-05 Thread Matt Kruse
is in its prototype object. Hope that helps, Matt Kruse

[jQuery] Re: The jQuery Object, Namespaces, and Program Modules -- Connecting the Dots Between jQuery and Javascript

2009-05-05 Thread Matt Kruse
fine and would seem cleaner. Any other questions? :) Matt Kruse

[jQuery] New Google Gadget: jQuery Universe

2009-05-04 Thread Matt Kruse
testing yet, so this really is an alpha kind of release. If you have any feedback, please let me know so I can fancy it up for it's final release! Matt Kruse

[jQuery] Webkit not complying with simple jQuery selector

2009-05-01 Thread Matt
I'm attempting to make every .inputbox element except the last one read-only on my webpage. Firefox and IE comply but Safari and Chrome apply readonly to ALL .inputbox elements on the page, even the last one. I've narrowed down my issues to the selector in this line:

[jQuery] Re: Webkit not complying with simple jQuery selector

2009-05-01 Thread Matt
Awesome, glad that can be verified. Thank you! Ticket opened: http://dev.jquery.com/ticket/4587 On May 1, 11:28 am, Ricardo ricardob...@gmail.com wrote: On May 1, 12:34 pm, Matt matthew.h...@gmail.com wrote: I'm attempting to make every .inputbox element except the last one read-only

[jQuery] ui slider effects

2009-04-25 Thread matt
I know there's an animate parameter for the slider, but has anyone added (or know how to add) a bounce effect or easing effect to the ui slider at: http://jqueryui.com/demos/slider/#steps

[jQuery] Re: performance of jQuery.each

2009-04-24 Thread Matt Kruse
() http://groups.google.com/group/jquery-dev/browse_frm/thread/be468dd3344f5f26/d340a8799e416615 Matt Kruse

[jQuery] Using this within alsoResize attribute in Resizable

2009-04-23 Thread Matt
way of evaluating the statement as a string before parsing? This is really making it hard to do OOP using jQuery! Shoot me an email at mattmue...@gmail.com or reply to this post! Thanks in advance, Matt Mueller

[jQuery] Re: rss from plugins.jquery.com?

2009-04-21 Thread Matt Kruse
this: http://plugins.jquery.com/project/Plugins/date Getting this page as RSS would be fantastic. Matt Kruse

[jQuery] Re: rss from plugins.jquery.com?

2009-04-21 Thread Matt Kruse
On Apr 21, 4:09 pm, Karl Swedberg k...@englishrules.com wrote: Here you go: http://plugins.jquery.com/latest_releases/feed Cool, is this new, or did I just not find it when I looked? I'd like to see more items in the feed, too. So it would hopefully reach back 3-5 days at least. Matt Kruse

[jQuery] Re: How to rewrite this in jQuery?

2009-04-20 Thread Matt Kruse
(){ if (!this.id) this.id = this.rel; }); Of course, it would probably be better to avoid this altogether and use the rel attribute to make selections to begin with. Matt Kruse

[jQuery] jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Matt M.
-home Thanks for any help! --Matt

[jQuery] Re: jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Matt M.
I solved this one. I had to use these options: cleartype: false, cleartypeNoBg: false Works nicely. Thanks to Mike Alsup for a great plugin! On Apr 16, 12:06 pm, Matt M. quink...@gmail.com wrote: Hello, I was wondering if anyone knew of a solution to be able to use transparent

[jQuery] How can I freeze the title row in a table?

2009-04-08 Thread Matt Wilson
I have a table with lots of rows, and when I scroll down, I can't see the row with the column titles. How can I freeze that row in place so I can still see it as I scroll down?

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
pseudocode rules : { thisField : { depends: function(element) { return $('#thatField').length == 0; } } thatField : { depends: function(element) { return $('#thisField').length == 0; } } } /pseudocode

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
Ooops... pseudocode rules : { thisField : { required: true, depends: function(element) { return $('#thatField').length == 0; } } thatField : { required: true, depends: function(element) { return

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Matt Kruse
On Apr 8, 9:53 am, Matt Wilson m...@tplus1.com wrote: I have a table with lots of rows, and when I scroll down, I can't see the row with the column titles. How can I freeze that row in place so I can still see it as I scroll down? There isn't a good solution that will work across all

[jQuery] [validate] Multiple field validation

2009-04-07 Thread Matt
with the rest of the form. Thanks, Matt

[jQuery] BlockUI Plugin - No overlays in Linux (Fedora)

2009-04-06 Thread Matt
I was trying the BlockUI plugin - we're about to implement it with one of our products at work. The current way that we do things doesn't display right in Linux (Firefox). (Actually, it doesn't display very well at all, which is why we're moving to BlockUI anyway.) It turns out that BlockUI

[jQuery] Re: jQuery and Ruby on Rails

2009-04-03 Thread Matt Quackenbush
jQuery is client side. Ruby is server side. jQuery (or any JavaScript) is completely incapable of setting a Ruby (or any server-side language) variable. However, you can use jQuery's $.ajax() method to send an asynchronous request to the server, passing along the variable value. Check the

[jQuery] Too much recusion/Out of Memory

2009-04-02 Thread Matt
into it. Does anyone know anything regarding how the history plugin with the latest version of jquery might introduce this? Thanks all, Matt

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
everything. This all seems very normal and trivial to me though(for jQuery to handle), so I'm not sure it has anything to do with the issue.. Thanks for sharing your experience too. On Apr 2, 11:10 am, Donny Kurnia donnykur...@gmail.com wrote: Matt wrote: Hi All, I realize this is kind of vague

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
I should add, sometimes IE gives a stack overflow notice also, but again, not on every load() or history plugin pageload() call. In case this triggers anything in anyone's mind. Thanks. On Apr 2, 11:16 am, Matt Critchlow matt.critch...@gmail.com wrote: I am making a lot of use of jQuery's load

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
to the point where you only have the code necessary to cause the error, then you have an useful test-case. cheers, - ricardo On Apr 2, 3:33 pm, Matt Critchlow matt.critch...@gmail.com wrote: I should add, sometimes IE gives a stack overflow notice also, but again, not on every load() or history

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
=\n; firebug-...ervice.js (line 1952) however in IE i get the following error: Out of memory jquery-1.3.2.js, line 1427 character 2 Which is: context = context || document; On Apr 2, 11:16 am, Matt Critchlow matt.critch...@gmail.com wrote: I am making a lot of use of jQuery's load method

[jQuery] Re: table filtering

2009-03-31 Thread Matt Kruse
(), and avoid the find() calls by using native DOM methods if this doesn't offer any speed-up. Matt Kruse

[jQuery] [validate] Select box help

2009-03-30 Thread Matt
I have a form that has a few select boxes and have been unsuccessful at getting them to validate on change, or tabbing away from the field. The first field is a month field, and the first option is blank the select is designed like so select name=dobmonth id=dobmonth class=inputNormal

[jQuery] Re: Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread Matt W.
You might want to try adding one click to the table and checking if the target was a td. On Mar 26, 7:13 am, J K artlo...@gmail.com wrote: Let me start by saying that I am doing something rather unorthodox with jQuery, and I realize that this is probably outside the realm of what is

[jQuery] Re: Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread Matt Kruse
and other factors is something you have to consider yourself. Matt Kruse

[jQuery] s3Slider IE opacity question

2009-03-25 Thread Matt
this to happen? I'm using what I believe to be the latest version of the plugin and css on GitHub. Thanks, Matt

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread Matt Quackenbush
John, I'm not the offender, but he did apologize and explain. http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b HTH On Tue, Mar 24, 2009 at 5:28 PM, John Resig wrote: Uhhh... why were there like 30 of these submitted to the mailing list? Your email address has

[jQuery] Re: JS Toolbox - Sortable Table

2009-03-23 Thread Matt Kruse
and tbody for your content. You can email me privately if it still doesn't work after fixing that. Matt Kruse

[jQuery] Re: compare jQuery objects

2009-03-19 Thread Matt Kruse
++) { if (this[i]!==compareTo[i]) { return false; } } return true; } $('#home').equals( $('#home') ); // True! Matt Kruse

[jQuery] Using jQuery to parse XML

2009-03-18 Thread Matt
snippet I pasted above starts at line 16. Thanks for the help in advance! Again, my apologies for the (partial) repost. Matt

[jQuery] Using jQuery to parse XML

2009-03-18 Thread Matt
Hi all, I've spent a long time trying to figure out why my code to pull elements out of an XML file isn't working, to no avail. Here's the code snippet I'm using, given an XMLHttpRequest named responseXML which seems to be in fine shape (inspected using Safari 4 beta's Inspect Element feature):

[jQuery] Re: Using jQuery to parse XML

2009-03-18 Thread Matt
...@gmail.com wrote: Post the portion of code where you DO call this since, as you say it seems to NOT have been called, or, try putting an alert just before that call as you do here...for the poor person's debug effort :) On Mar 18, 2:49 am, Matt mattjb...@gmail.com wrote: Hi all, I've spent

[jQuery] Re: why coding like this:(function(){})();

2009-03-15 Thread Matt Kruse
consider this to be semantics, but it's important. :) Matt Kruse

[jQuery] Re: jQuery.com homepage News from the jQuery Blog not up to date?!

2009-03-11 Thread Matt Quackenbush
jQuery 1.3.1 Released, dated January 21st is the latest one that I see. On Wed, Mar 11, 2009 at 11:16 PM, jQuery Lover wrote: Mine is up to date... the latest news is about jquery ui 1.7 release... Anyone with similar problems ?

[jQuery] Re: Global Object, Scope question

2009-03-10 Thread Matt Kruse
= obj.defaultChecked; } ... } Matt Kruse

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-03-04 Thread matt
): but without happy-end -.- I figured out how to make it work on IE6 (mostly), but as the changes are very specific I did not include them in the code. If anyone requires ie6 support just ask. So here I am and I'm asking for support :-) a few code snips should be enough. Thanks in advance best regards Matt

[jQuery] Re: How do I translate this in jQuery?

2009-03-04 Thread Matt W.
. The 'myIframe' var is unnecessary though. cheers, - ricardo On Mar 3, 3:38 pm, Matt W. propel...@gmail.com wrote: function getContentFromIframe(iFrameName) {    var myIFrame = $(#+iFrameName);    var content      = myIFrame.contents().find(body).html();    $('#myiFrame-content

[jQuery] Re: serialize array question for dynamic form

2009-03-03 Thread Matt Critchlow
Wow... can't believe i didn't try that. thanks! On Mar 2, 4:22 pm, mkmanning michaell...@gmail.com wrote: You need a 'name' attribute on your inputs. On Mar 2, 3:56 pm, Matt matt.critch...@gmail.com wrote: Hi, If i create a dynamic form(requirement for a project) serializeArray

[jQuery] Re: How do I translate this in jQuery?

2009-03-03 Thread Matt W.
function getContentFromIframe(iFrameName) { var myIFrame = $(#+iFrameName); var content = myIFrame.contents().find(body).html(); $('#myiFrame-content').append(content); On Mar 3, 9:56 am, Rick Faircloth r...@whitestonemedia.com wrote: I've made various attempts at translating

[jQuery] Re: $.getJSON

2009-03-02 Thread Matt Quackenbush
Yes. On Mon, Mar 2, 2009 at 3:35 AM, Alain Roger wrote: Hi Wil, so if i understood well, having the following JSON: {records:[{id:1,abbreviation:fre,description:french},{id:2,abbreviation:eng,description

[jQuery] Re: checkbox array

2009-03-02 Thread Matt Kruse
any one of many discussions on the web on this topic. Matt Kruse

[jQuery] serialize array question for dynamic form

2009-03-02 Thread Matt
Hi, If i create a dynamic form(requirement for a project) serializeArray() or serialize() doesn't seem to work. Is there any reason why this is? Here's a simple example. neither function returns anything. $(document).ready(function(){ var sform = $(form

[jQuery] Re: checkbox array

2009-03-02 Thread Matt Kruse
, not ID or NAME. http://lmgtfy.com/?q=name+attribute+cdata+id+token ;) Matt Kruse

[jQuery] Re: What can we use in place of $.browser?

2009-02-25 Thread Matt Kruse
to check the browser would benefit from reading more about feature detection and why it is almost always a better strategy. It just doesn't come naturally at first for many, and you might struggle through some yeah, BUT! moments, but in the end you'll be better off. Matt Kruse

[jQuery] Re: Best Practices, Am I Using Them?

2009-02-25 Thread Matt Kruse
. Matt Kruse

[jQuery] Re: Ajax tabs in non JavaScript browsers

2009-02-21 Thread Matt Quackenbush
The 'j' in Ajax is 'JavaScript'. Bottom line is, if the browser has JavaScript disabled, you cannot use Ajax.

[jQuery] Re: Extending a plugin

2009-02-18 Thread Matt Kruse
when implemting jQuery, and it would be great if there were some better models and guidelines for plugin development that would make the end results better for everyone. Matt Kruse

[jQuery] Re: A question for John Resig

2009-02-18 Thread Matt Kruse
. It's just a minor quibble anyway. It's similar to lines like this in the jquery source: if ( typeof text !== object text != null ) Fixing things like this would tighten and improve the code a bit, IMO. Matt Kruse

[jQuery] Re: Image rollover effects in Superfish menu

2009-02-17 Thread Matt
I wrote that other post that Steve mentioned, and probably should update it since I have made some slight changes to be a little more semantically correct. First, to directly answer your question, you'll need some CSS markup like this: li:hover a#b1 em, li.sfHover a#b1 em

[jQuery] Re: jQuery w ajaxCFC

2009-02-13 Thread Matt Quackenbush
cflib.org has a UDF that should do the trick for you. I think it's called serializeJSON(). Might want to give that a shot. On Fri, Feb 13, 2009 at 10:06 PM, Neil Bailey wrote: We're using CF7, which doesn't support a returntype of JSON - I wish. I am looking into simply returning a

[jQuery] Re: jquery doesn't work, when loaded with ajax

2009-02-12 Thread Matt Brown
Shouldn't you put the script tags in the header of the page? Why do you only want to load the jQuery library when the form is loaded? On Feb 11, 11:16 pm, s4crifi...@gmail.com s4crifi...@gmail.com wrote: Hello. I'm building a wab page with ajax. Well, everything was fine, before i needed to

[jQuery] jQuery query string implementation

2009-02-05 Thread Matt Gardner
-with-jquery/453688#453688 -- Matt

[jQuery] Re: ajaxfileupload response problem

2009-02-04 Thread Matt
style=position: absolute; top: -1000px; left: -1000px; html head/ body pre{”result”:”success”}/pre /body /html /iframe Any idea what’s going on here? On Feb 3, 2:20 pm, Matt matt.critch...@gmail.com wrote: Hi All, I'm trying to use the following plugin to allow me to submit data and upload a file

[jQuery] ajaxfileupload response problem

2009-02-03 Thread Matt
on this? Thanks, Matt

[jQuery] Re: Changing Tooltip style

2009-02-01 Thread Matt
} (or whatever suits your needs) Good luck! Matt On Jan 31, 5:37 pm, apple quye...@yahoo.com wrote: Hi, I would like to change the tooltip style: making the font smaller with a different color ; I tried changing the tooltip.css but it seems not to work... #tooltip {         position: absolute

[jQuery] Re: slideViewer v1.1 + Tooltip v1.3 + jQuery v1.3.1 = tooltips fail

2009-01-31 Thread Matt
#gallery).slideView({ easeFunc: easeOutBounce, easeTime: 500, toolTip: true }); }); Does the load order matter? Mine is: 1. jQuery 1.3.1 2. easing plugin 3. Tooltip 1.3 4. slideViewer 1.1 Matt On Jan 31, 12:10 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Could

[jQuery] Re: slideViewer v1.1 + Tooltip v1.3 + jQuery v1.3.1 = tooltips fail

2009-01-31 Thread Matt
, but the fix is easy enough for anyone else in the same boat as I was. Check it out! Matt On Jan 31, 12:33 pm, Matt matthew.c.wag...@gmail.com wrote: Jörn, Thanks for the response, and I agree that tooltips by themselves work fine with your plugin. I have the latest version in use

[jQuery] jQuery + Cycle Plugin (Duplicating Problem with Pager Anchors in IE)

2009-01-30 Thread Matt M.
I'm having an issue where the pager is building twice as many anchors as there are pics. I only have this issue in IE. The script is working great in FF/Safari. You can see the difference on the page below. Any help is appreciated. Thanks! http://70.32.114.139/bases/naval-base-kitsap-bangor

[jQuery] jQuery + Cycle Pager Nav Issue in IE

2009-01-30 Thread Matt M.
I'm having a weird problem where IE is adding twice as many nav pager elements. As you can see, the script works nicely in FF/Safari, but when viewed in IE, the nav gets wonky. I'm having trouble figuring it out, so any help is appreciated. Thanks!

[jQuery] Re: jQuery + Cycle Pager Nav Issue in IE

2009-01-30 Thread Matt M.
Thanks, Mike. That was it. I appreciate the help! ps: Sorry for the double post. I didn't think the first one went through. On Jan 30, 12:08 pm, Mike Alsup mal...@gmail.com wrote: I'm having a weird problem where IE is adding twice as many nav pager elements. As you can see, the script

[jQuery] Re: slideViewer v1.1 + Tooltip v1.3 + jQuery v1.3.1 = tooltips fail

2009-01-29 Thread Matt
I have a little demo up to check out. http://jquery.oniegirl.com/svw/ (the pictures are not mine, just re-using one of the demos from the slideviewer site) 2 versions: the first works (using jQuery 1.2.6, easing 1.3, OLD tooltip plugin, slideviewer 1.1) the second does not

[jQuery] slideViewer v1.1 + Tooltip v1.3 + jQuery v1.3.1 = tooltips fail

2009-01-27 Thread Matt
Hi all, I'm having trouble getting the nice tooltips to show up on my slideViewer gallery when using jQuery 1.3.1. I need some guidance in debugging the problem Here's what I've found so far: 1. When using jQuery 1.2.6 (with slideViewer 1.1 and Tooltip 1.3) the tooltips show up UNDER the

[jQuery] Re: Can jQuery calculate CSS Width/Height

2009-01-26 Thread Matt
$('#Test').css('width') ? On Jan 26, 11:46 am, Kevin Dalman kevin.dal...@gmail.com wrote: jQuery has innerHeight/Width and outerHeight/Width methods, but is there a method that can return a 'CSS Height/Width'. A CSS width is the width that would be applied via CSS to achieve a given 'outer

[jQuery] syntax selector problem

2009-01-14 Thread Matt caron
If I have: $(div).click(function(){ //How do I do the following $(this + p).show(); }); I want to select the child p of the div I clicked, and I know there's proper syntax to it, but I am completely brainfarting on it. Thanks! Matt

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread Matt Quackenbush
Just to be clear, I'm kinda doubting that anyone has an issue with n00b questions. I believe what people take exception to is the exact same person asking the exact same type of questions over and over and over and over again (for years, even), with the expectation of someone else writing all of

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-13 Thread Matt Quackenbush
Has it ever occurred to you that maybe, just maybe, people are sick and tired of helping you when you refuse to help yourself? On Tue, Jan 13, 2009 at 10:32 PM, Rick Faircloth wrote: This is a completely different part of the problem. The other parts have been solved, but I couldn't make

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-13 Thread Matt Quackenbush
On Tue, Jan 13, 2009 at 10:54 PM, Rick Faircloth wrote: If you are sick and tired of helping me, then don't. I don't remember having any contract with you. You couldn't afford a contract with me. And, fyi, I do help myself…I do read the docs and search for blogs, tutorials etc.

[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-01 Thread Matt Quackenbush
Probably because the path to jQuery is incorrect and therefore jQuery is not actually loaded. On Thu, Jan 1, 2009 at 5:26 AM, spstieng wrote: Now, clicking Test B links dislays the 'Hello World' alert. But nothing happends when I click Test A. Why is that?

[jQuery] Re: $(document).ready fires before CSS is rendered?

2008-12-31 Thread Matt Wilson
On Dec 30, 9:56 pm, donb falconwatc...@comcast.net wrote: Are your CSS directives declared in the header, or did you put them within the body of the page (where they may be applied later than you wish, or may not be at all).  Are they in a CSS file that isn't being loaded?  (Use Firefox and

[jQuery] Re: HELP: Screening questions for JavaScript developer candidates:

2008-12-31 Thread Matt Kruse
of questions. It seems to have been written by someone with very limited javascript knowledge. The fact that they mistake closures for enclosures and call the topic super-impressive would cause me to run away immediately. Matt Kruse

[jQuery] $(document).ready fires before CSS is rendered?

2008-12-30 Thread Matt Wilson
I've got some links that only serve as anchors for javascript, so I use CSS to hide them like this: .requiresjavascript { display:none; } and here's the HTML: a class=requiresjavascript clearall href=#Clear all/a a class=requiresjavascript clearall href=#Check all/a The idea is that for

[jQuery] applying css style to past dates

2008-12-28 Thread Matt
love the help. :) Thanks in advance, Matt

[jQuery] Trying to assign onClick to a link

2008-12-16 Thread Matt
be appreciated! Thanks in advance, Matt

[jQuery] Re: Trying to assign onClick to a link

2008-12-16 Thread Matt
Worked perfectly. Thanks Michael and Mike!! On Dec 16, 6:43 am, Michael Price m...@edwardrobertson.co.uk wrote: Matt wrote: Hi everyone, I'm very new to jQuery and am trying to have a div toggle between hidden and shown using the slideToggle function. This is my code that I have

[jQuery] Superfish - maintain hover appearance on top level with image replacement?

2008-12-15 Thread Matt
First, thanks to Joel Birch for the great jQuery plugin! I have implemented Superfish on a site I was working on and customized the top level using css image replacement with 1 sprite for all the buttons. As a finishing touch, I'm wondering if it's possible to maintain the hover appearance of

[jQuery] Re: selectChain Plugin - Fires on Page Load

2008-12-12 Thread Matt Quackenbush
Bump (again). :-) Is my question that difficult, or just that stupid? ;-) On Tue, Dec 9, 2008 at 8:04 PM, Matt Quackenbush wrote: Hello, I am using Remy's most excellent selectChain plugin ( http://remysharp.com/2007/09/18/auto-populate-multiple-select-boxes/), but I do not want

<    1   2   3   4   5   >