[jQuery] Classis ASP integrating Async Treeview Plugin using getJSON. Stops working when using response.write [variable name] instead of simple JSON string

2010-01-28 Thread Jason Knight
Hi all, I've loved using jQuery these past few months, but I'm really pulling my hair our here. The following is the endpoint asp code that gets called to populate my treeview: % rootid = request.querystring(rootid) json = set Conn = server.CreateObject(ADODB.Connection) Conn.Open strProvider

[jQuery] Re: Superfish 1.4.8 accessibility enhancement

2010-01-12 Thread Jason Denizac
a google code project for it. -Jason On Jan 10, 2:12 pm, decola decola...@googlemail.com wrote: Im really wondering where the developer of this project ... anyway i made some enhancements to superfish by myself. Am i allowed to copy and paste your code into my work. Because if the developer

[jQuery] Superfish - Working locally but not working live

2010-01-08 Thread Jason Camp
Very confused. Working on a Wordpress site/theme and integrating superfish for the main (pages) navigation. Everything is working on locally (running XAMPP on an XP box), but on the live site, child pages are not appearing as dropdowns. I can see in the source that the children are being

[jQuery] Superfish 1.4.8 accessibility enhancement

2010-01-07 Thread Jason Denizac
while leaving them available for screen readers. You can grab the updated code here http://jsbin.com/useku (Apologies if this is the wrong place for this posting - the author of the original Superfish plugin mentioned this list as the place for support for the plugin. Thanks!) Jason Denizac

[jQuery] Superfish Nav-bar Joomla issue

2010-01-06 Thread Jason
I'm using the superfish module for joomla 1.5 all options except Nav- bar seem to work fine i have a fix menu area width 705px the 1st and 3rd levels are fine however the second level does not fill the entire 705px and instead folds into a 3rd line any ideas on how to get it to fill out the width?

[jQuery] simple jquery question

2010-01-02 Thread jason
Hey, was wondering if anyone could help me with a basic JQ question. Ok so I am trying to select each element that has a certain class on my page, and then use what is inside of the h3 class=example I am selecting to populate a drop down select box with the id of deptFilter. (with each result

[jQuery] jquery and tomcat

2009-12-30 Thread jason
hello, i am looking to begin web development after a bit of experience with computer programming (computation and numerical methods). i am looking for a web host. so far anhosting.com seems like a fine option, but i would like to be able to make use of jquery. can anyone recommend a web host?

[jQuery] Re: Styling dynamic content

2009-12-17 Thread Jason Kaczmarsky
I must have missed something cause I made a new page and rewrote the code and it worked fine. Thanks for the help guys. On Dec 17, 5:26 am, Richard D. Worth rdwo...@gmail.com wrote: Works for me: http://jsbin.com/egoto/ - Richard On Wed, Dec 16, 2009 at 8:44 PM, Jason Kaczmarsky jkaczmar

[jQuery] Re: Styling dynamic content

2009-12-17 Thread Jason Kaczmarsky
(this) }); Nothing is ever alerted if that element is clicked. Example page: http://pendarenstudios.com/NEW/file_sel.php On Dec 17, 10:39 am, Jason Kaczmarsky jkaczmar...@yahoo.com wrote: I must have missed something cause I made a new page and rewrote the code and it worked fine. Thanks for the help guys

[jQuery] Re: Styling dynamic content

2009-12-17 Thread Jason Kaczmarsky
Ah, thank you very much. On Dec 18, 12:29 am, Richard D. Worth rdwo...@gmail.com wrote: Seehttp://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_ev... - Richard On Fri, Dec 18, 2009 at 12:23 AM, Jason Kaczmarsky jkaczmar...@yahoo.comwrote: Ahah, this was the problem I

[jQuery] Styling dynamic content

2009-12-16 Thread Jason Kaczmarsky
So I've created a little app which loads some filenames into a div via an AJAX query. This happens when a user clicks a button, not when the page loads. Because of this, I cannot style the filenames how I want. I've tried using CSS to do the trick: .file{ color: #F00; } .file:hover{

[jQuery] Re: Styling dynamic content

2009-12-16 Thread Jason Kaczmarsky
[mailto:jquery...@googlegroups.com] On Behalf Of Jason Kaczmarsky Sent: Wednesday, December 16, 2009 2:14 PM To: jQuery (English) Subject: [jQuery] Styling dynamic content So I've created a little app which loads some filenames into a div via an AJAX query. This happens when a user clicks a button

[jQuery] Re: jquery numeric spinner and jqueryui tabs

2009-12-10 Thread Jason Meckley
9, 2009 at 4:52 PM, Jason Meckley jasonmeck...@gmail.comwrote: it appears that calling load programatically (rather than clicking on the tab manually) does not call the show function. In that case, you might try .triggerHandler('click') - Richard

[jQuery] Re: simple accordion problem

2009-12-10 Thread Jason Meckley
why not use http://jqueryui.com/demos/accordion/ On Dec 10, 11:05 am, mojoeJohn mojoej...@gmail.com wrote: thanks for the explanation. my accordion works fine but i was wanting to reduce it's sensitivity. i tried putting return false but it didn't help much.  any other suggestions? On Dec

[jQuery] jquery numeric spinner and jqueryui tabs

2009-12-09 Thread Jason Meckley
I have a set of tabs that loads it's contents using ajax. within some of these tabs I have defined numeric spinners. I have found that i need to configure my spinners on tabsshow, not tabsload. however tabs load works for just about everything else i do dynamically. I'm guessing this has something

[jQuery] Re: slideToggle lag in Firefox

2009-11-27 Thread Jason Kaczmarsky
. Firefox eats up a lot of memory when open for a long time (900k sometimes) and my toggle divs drag ass. If I find a solution I would be happy to hear. Thanks, Dave -Original Message- From: Jason Kaczmarsky [mailto:jkaczmar...@yahoo.com] Sent: November-23-09 10:06 PM To: jQuery

[jQuery] slideToggle lag in Firefox

2009-11-23 Thread Jason Kaczmarsky
So I have a div with an input, textarea, and submit button. A link makes it so you can expand/contract this div. In Firefox only, the div resize is very laggy and its clearly shown on the site. That happens when you open it. The rest of the site is pushed down like its supposed to, but the

[jQuery] jQuery animating height in IE

2009-11-17 Thread Jason Kaczmarsky
So I have this login system which uses jQuery's animation function to make the tab eventually disappear. It works in all browsers fine but IE, of course. Anyway heres the code,Height=39: profile_info.animate({top:+=+Height,height:-=+Height},500,function (){...}); If I take out the height, it

[jQuery] how to remove elements by attribute

2009-10-27 Thread jason
Hi, How can I remove all div foo=whatver... div elements using the attribute foo for my selector? Basically any div with a foo attribute I want gone. Thanks, Jason

[jQuery] Re: Add value to Link. How can I do this?

2009-10-16 Thread Jason
$(.Download).each(function(){ $(this).attr('onClick', javascript: pageTracker._trackPageview('/ downloads/map');); }); On Oct 16, 5:51 pm, shapper mdmo...@gmail.com wrote: Hello, I have the following anchor: a href=http://www.example.com/files/map.pdf; onClick=javascript:

[jQuery] Index, .load issues

2009-10-16 Thread Jason
Hi Gang, I've been wasting time trying to figure this out to no avail. Here's my function: //Toggle $(#type_new).hide(); toggle = function(){ $(a.toggle).unbind('click').click(function(){ var aIndex = $(a#type).index(this);

[jQuery] Re: $.post and form data

2009-10-13 Thread Jason
Thanks! Looks perfect. On Oct 12, 12:40 am, Karl Swedberg k...@englishrules.com wrote: On Oct 11, 2009, at 3:35 PM, Jason wrote: Can someone explain a little bit more (more then jQuery's docs) about how the $.post operates?  I know it's a shortcut for .ajax and it uses the HTTP POST

[jQuery] $.post and form data

2009-10-11 Thread Jason
Can someone explain a little bit more (more then jQuery's docs) about how the $.post operates? I know it's a shortcut for .ajax and it uses the HTTP POST request. So I'm guessing it's not sending the same request the form would send... i.e. you HAVE to provide the data to the php script through

[jQuery] Re: Block access to the page but unblock certains divs

2009-10-06 Thread Jason
on the page that id :not this? I am going to try to work on this today a little, and share if I come up with anything. Also, let me know if you were able to develop anything that met your requirements! Thanks, Jason On Oct 2, 10:51 am, samh12 ste...@bluemania.co.uk wrote: Hi Nalum, Idon't think

[jQuery] jQuery Countdown help

2009-09-18 Thread Jason
(austDay.getFullYear() + 1, 1 - 1, 26); $('#count').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'}); $('#year').text(austDay.getFullYear()); }); Cheers, Jason

[jQuery] Form and Validation Plugins

2009-07-28 Thread Jason
I have created a new site that has a contact page and am trying to use the Forms plugin and Validation plugin. I can get the validation plugin to work fine and submit the form when it is valid but I am trying to use AJAX to update a div when the form has been successfully sent. All that is

[jQuery] Re: Form and Validation Plugins

2009-07-28 Thread Jason
Can anyone help with my above query. I can not get it to validate befor sending the form. It only does after any empty form is submitted Jason On Jul 28, 7:33 pm, Jason jaskelly3...@gmail.com wrote: I have created a new site that has a contact page and am trying to use the Forms plugin

[jQuery] Form mailing script

2009-07-26 Thread Jason
not publishing it on the web. Has anyone done this and willing to give me some help and examples. regards Jason

[jQuery] Re: jQuery cycle plugin pager not working in FF and Safari

2009-07-01 Thread Jason
Thanks! Problem solved. It is always the simple things. I appreciate the help. On Jul 1, 8:54 am, Mike Alsup mal...@gmail.com wrote: I am having an odd error where the pager generates links but they don't change the slide in FF and Safari. The biggest surprise of all is that it actually

[jQuery] jQuery cycle plugin pager not working in FF and Safari

2009-06-30 Thread Jason
I am having an odd error where the pager generates links but they don't change the slide in FF and Safari. The biggest surprise of all is that it actually works in IE. Here is the page I am referring to: http://76.12.208.222/ Any suggestions?

[jQuery] Carousel with external controls problem

2009-06-23 Thread Jason Pang
Well, I managed to put 2 Carousel with external controls together on a page. Now, I'm facing another problem, that's the external controls. The controls, I can't change the numbers to something else (name of the picture). You can check out what I mean here: http://jasonpang.com/test/test4.html

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-26 Thread Jason Persampieri
was quite happy with it. I've done enough little bits of Perl, PHP, and now JavaScript over the years that I have terrible trouble remembering exactly which bits of syntax will or won't work with each! Thanks again to Jason, my little dynamic map works like a charm. Regards: colin_e On May 25

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Jason Persampieri
Alternatively, another method would be - setTimeout( function() { movebus(a, b, c);}, 300); This format is preferred as it won't invoke 'eval', allows for more complex logic and gets you some nifty closure action. _jason On May 25, 1:36 am, Surya Prakash suryabg2...@gmail.com wrote: Hi U

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread Jason Persampieri
Certainly... you're really not all that far off at all... let me just point out a couple of things. 1) It's :first-child, not :first. 2) inside the loop, the variable - this - is a reference to the DOM li node. Hence, to get the jQuery object for that node, use $(this) (note the lack of

[jQuery] Re: jQuery(document).ready() Type error on WebKit based Browsers

2009-05-25 Thread Jason Persampieri
Sure, I wasn't doing anything fancy, just - try { if ( div.getElementsByClassName(e).length === 0 ) return; } catch (e) {} but I'm not sure how that would have affected Opera and such (it really shouldn't). As John said (on the jquery dev mailing list), the problem is due to running

[jQuery] Re: Newbie question- declarative selectors inside procedural code

2009-05-25 Thread Jason Persampieri
have an IE quivalent to Firebug so i'm slightly stuck on how to try to debug it. Anyway, in Firefox it works like a charm. Thanks for the help, much appreciated! Regards: colin_e On May 25, 11:44 am, Jason Persampieri papp...@gmail.com wrote: Certainly... you're really not all that far

[jQuery] Re: animate padding start value - Firefox (getComputedStyle)

2009-05-22 Thread Jason Persampieri
Safari jumped as if I'd simply set the value. Maybe that's related to what you're seeing, but it works on some level without giving an error Liam Jason Persampieri wrote: The problem occurs when trying to determine the 'start' value. getComputedStyle explodes 'padding' into its four

[jQuery] Re: animate padding start value - Firefox (getComputedStyle)

2009-05-21 Thread Jason Persampieri
a smooth animation - the others (FF, Chrome Safari) seem to jump L Jason Persampieri wrote: (Firefox 3.0.10, OS X) I am setting a padding value via a stylesheet and trying to animate it - - CSS myElement { padding: 20px } - Javascript myElement.animate( {padding: 12px

[jQuery] attribute selector order

2009-05-21 Thread Jason Persampieri
(Firefox 3.0.10, OS X) Can anyone explain why these two statements would return different sets? inlineTips.filter([title!=''][value='']) [input.inlinetip, input.inlinetip, input.inlinetip, input.inlinetip, input.inlinetip] inlineTips.filter([value=''][title!='']) [] To make sure it's not

[jQuery] Re: submit() not submitting

2009-05-21 Thread Jason Persampieri
That will only submit if form is the first-child of it's parent (in the DOM). Can you verify that's the case? alert( $(form:first).length ); // or something On May 21, 12:51 pm, l3kris jcj...@gmail.com wrote: I have this function that validates and is supposed to submit a simple form:

[jQuery] Re: how to get the element that triggered the event

2009-05-21 Thread Jason Persampieri
Instead of declaring the javascript handler in the href, declare it with jQuery in a script section. a class='print' href='#'Print/a script type='text/javascript' $(a.print).click(function() { printSection( $(this).parent() ); return false; }) /script _jason On May 21, 7:18 pm, iceangel89

[jQuery] animate padding start value - Firefox (getComputedStyle)

2009-05-20 Thread Jason Persampieri
(Firefox 3.0.10, OS X) I am setting a padding value via a stylesheet and trying to animate it - - CSS myElement { padding: 20px } - Javascript myElement.animate( {padding: 12px} ) When calculating the start padding value, jQuery calls 'getComputedStyle'. Unfortunately, computedStyle.padding

[jQuery] Re: How to display additional text along with link

2009-05-15 Thread Jason Persampieri
Is this what you're looking for? $(a:not[href^=http]).each(function(){ var ext=$(this).attr(href).match(/\.[^\.]*$/); if (ext) $(this).after(span class='fileExtension'(+ext.slice (1)+)/span); } ); On May 15, 8:09 am, infoaddicted jack.lapla...@gmail.com wrote: This calls for a

[jQuery] [Superfish] 1st and 2nd level menu item widths

2009-05-05 Thread Jason
playing with the style sheets setting widths to lists and list items but nothing seems to change. Any suggestions would be greatly appreciated. Regards, Jason

[jQuery] Re: 1st and 2nd level menu item widths

2009-05-05 Thread Jason
All sorted - just found supersubs :-) On May 6, 12:00 pm, Jason conroy.ja...@gmail.com wrote: Does any know if it is possible to make the superfish drop down menu item width the same as the main menu items widths (i.e. so that the 1st and second level menu items have the same width

[jQuery] jCarousel remove method problems

2009-04-30 Thread Jason
I have added buttons to my jCarousel to trigger removing any image from the carousel. However, it seems the remove() method is not working for this. First off, it only allows you to remove images that are off-screen. Even if I hack around that problem the carousel does not update to remove the

[jQuery] Re: Managing scripts in AJAX applications

2009-04-11 Thread Jason Huck
that I presented are available here: http://devblog.jasonhuck.com/2008/09/23/an-asset-management-system-for-lasso-powered-sites/ - jason

[jQuery] Re: multiple dynamic jcarousel instances

2009-04-02 Thread Jason
Here is an example on how to have multiple jCarousels on one page. Summary: you need to name each jCarousel with a different ID. http://sorgalla.com/projects/jcarousel/examples/static_multiple.html On Apr 2, 12:22 pm, amuhlou amysch...@gmail.com wrote: Hello, I'm working with

[jQuery] captions and jcarousel

2009-03-31 Thread Jason
Forgive my ignorance first of all, but i have a horizontal carousel (not sure of the technical term) with images. Is it possible to include a caption(text) above and below each image? Secondly, is the size of each image only limited to 75x75? Many thanks jason

[jQuery] Stuttering background with accordion in Firefox

2009-03-19 Thread Jason Broyles
Trying my luck over here because I am not getting any love in the jquery ui mailing list. I am getting a strange behavior with Firefox using the accordion. This works fine in all other browsers including Internet Explorer. First, let me describe my setup. Firefox 3 (Tested in OS X and Windows,

[jQuery] Nested draggable list not causing droppable events to fire

2009-03-16 Thread Jason
I have a nested list of the type below. It represents a folder hierarchy and I am trying to make it so that if the user drags any folder in the tree, all of the children will be dragged along with it. In the example below, if the user drags Folder1 the entire tree comes with it (which is what I

[jQuery] Nested draggable list not causing droppable events to fire

2009-03-16 Thread Jason
I have a nested list which represents a folder hierarchy. An example of one of these lists is below. Basically I want the user to be able to drag any of the folders into a droppable. As is, if the user starts dragging Folder1 in the example below, the whole list is dragged along as well (which

[jQuery] linkselect plugin: problem with javascript set value

2009-03-03 Thread Jason
linkselect item is an inline element in a span, so it's unable to properly size the parent and the dropdown width is always set to the max-width from the CSS class. What's the proper way to get the list to size to its contents when its in an inline element? Thanks, Jason

[jQuery] tablesorter doesn't sort negative currency properly

2009-03-02 Thread jason
Hi, I have a column with values $4.50, $127.00, -$130.00, -15.76 and the sorting doesn't work. It works fine if all values are positive, however. Does anyone have any idea how to fix this? For now I just have to eliminate the $ in order for it to work. Thanks, Jason

[jQuery] linkselect plugin: issue with setting value

2009-02-20 Thread Jason
linkselect item is an inline element in a span, so it's unable to properly size the parent and the dropdown width is always set to the max-width from the CSS class. What's the proper way to get the list to size to its contents when its in an inline element? Thanks, Jason

[jQuery] Re: BlockUI: multiple blocks

2009-02-05 Thread Jason
to my call: $.blockUI( {message:null, css: { opacity: '0' }, overlayCss: {opacity: '0'} } ); But I'm still seeing the message box display even though there is no message. Is there any way to suppress completely and still use external CSS definitions? Thanks again, Jason On Feb 1, 9:03 am, Mike

[jQuery] Re: BlockUI: multiple blocks

2009-02-05 Thread Jason
Was actually able to figure this out. I needed to pass in a blank string for the message, then my css would get applied to the message, so all I had to do was manually move it offsreen: $.blockUI( {message:' ', css: { left: '-1000px'} , overlayCss: {opacity: '0'} } ); Thanks again, Jason

[jQuery] BlockUI: multiple blocks

2009-01-31 Thread Jason
invocations like this cause issues? Thanks, Jason

[jQuery] json and dates

2009-01-21 Thread Jason Meckley
? Jason

[jQuery] setting default value for datepicker.

2009-01-16 Thread Jason Meckley
today I'm learnig jquery. I downloaded jquery-1.3.min.js and jquery-ui- personalized-1.6rc5.min.js with everything. I'm trying to get the calendar working. so far I have most elements that I need: start on saturday formatted date select year/month display with image and textbox focus there are 2

[jQuery] [validate] Requiring values on optional fields

2008-12-23 Thread Jason
, in addition to the standard submit rules. What's the proper way to go about this? I couldn't figure out how to use a depends clause or a custom validator callback that would depend on what button was pressed or something of the sort. Thanks, Jason

[jQuery] Dequeue Animations with multiple Aniamtions Occuring at the Same Time (JCarousel)

2008-12-12 Thread Jason
animations (thumbnail clicks) to act upon. I think adding a new line between lines 68 and 69 that would halt current scrolling/animations would help to fix this, but I need help. Thanks, -Jason

[jQuery] Calling a jQuery function from html onClick

2008-12-08 Thread Jason
={image_url} onClick=swapImage(this.rel)img // a //---Javascript-// function swapImage(i){ //alert(i); var image = document.getElementById('swap_image'); image.src = i; } //---// Thanks for any help, Jason

[jQuery] Re: MIT or GPL License

2008-12-07 Thread Jason
Thanks Karl! On Nov 25, 6:53 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Yes, you can use one or the other. --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Nov 25, 2008, at 9:13 AM, Jason Coudriet wrote: Hello, When using jQuery, do have we have

[jQuery] Re: Change overflow of div when element clicked

2008-11-29 Thread Jason Turcotte
I WAS missing the brackets...duh! Thanks, that solved the problem. On Nov 27, 1:24 am, ricardobeat [EMAIL PROTECTED] wrote: Are you missing the brackets? $(document).ready(function(){ $(#test).click(function(){ $(#faq).css(overflow,auto) }; }); On Nov 26, 5:25 pm, Jason Turcotte [EMAIL

[jQuery] Change overflow of div when element clicked

2008-11-26 Thread Jason Turcotte
Hello, I'm fairly new to jQuery and am trying to do the following. I am using a coda slider effect for a website, which is working fine. What I need to do is change the overflow CSS property for a div when another element is clicked. Here's what I have: script type=text/javascript

[jQuery] MIT or GPL License

2008-11-25 Thread Jason Coudriet
Hello, When using jQuery, do have we have the option to use just the MIT license? Thanks, Jason

[jQuery] Selector Help

2008-11-25 Thread Jason
Code: fieldset a href= class=link/a /fieldset fieldset a href= class=link/a /fieldset fieldset a href= class=link/a /fieldset When a link is clicked, I would like to be able to reference the particular parent fieldset element, and not all of them. Something like this doesn't work:

[jQuery] Re: Selector Help

2008-11-25 Thread Jason
Excellent, thank you. On Nov 25, 4:24 pm, Charlie Griefer [EMAIL PROTECTED] wrote: On Tue, Nov 25, 2008 at 3:28 PM, Jason [EMAIL PROTECTED] wrote: Code: fieldset a href= class=link/a /fieldset fieldset a href= class=link/a /fieldset fieldset a href= class=link

[jQuery] Re: Why is the behavior only attached to the first select?

2008-11-16 Thread Jason Huck
(); Or, IIRC, I believe this works nowadays as well: var selected = $(this).val(); You might also consider storing the base URLs in an associative array rather than relying on custom (non-validating) attributes. HTH, Jason On Nov 16, 3:08 pm, Fluffy Convict [EMAIL PROTECTED] wrote: I'm trying

[jQuery] Re: Its possible to do this??

2008-11-16 Thread Jason Huck
be, there's no need to put anything in front of them in your selector, so you should be able to shorten it like so: var row = #socios.trSelected:first; $(row + td:first).css(color, red); HTH, Jason On Nov 16, 11:30 am, SoutlinK [EMAIL PROTECTED] wrote: Hi. I am new with jQuery, and i want

[jQuery] Re: help with jquery add/remove class

2008-11-16 Thread Jason Huck
the class. // (Consider using ID's for this instead, since they are unique.) var fp = $(this).attr('class').substr(4); // Switch the viewer's background-image attribute. $('p.viewer').css('background-image', 'url(graphics/' + fp + '.png'); }); HTH, Jason On Nov 15, 6

[jQuery] Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
HTML: ul id='list' li id='name1-link' link /li li id='name2-link' link /li li id='name3-link' link /li li id='name4-link' link /li /ul div id='wrap' div id='name1' text here /div div id='name2' text here /div div id='name3' text here /div div id='name4' text here /div /div CSS: #wrap li

[jQuery] Re: Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
with a '#' (not '.') to make it an ID selector. Also note that this.attr('id') wouldn't work: In the context of the click handler, 'this' is a DOM element, not a jQuery object. You could do $(this).attr('id'), but this.id is simpler. -Mike From: Jason HTML: ul id='list' li id='name1-link' link /li li

[jQuery] Re: Trouble with Selectors, Syntax, and more... Small Amount of Code

2008-11-14 Thread Jason
with a '#' (not '.') to make it an ID selector. Also note that this.attr('id') wouldn't work: In the context of the click handler, 'this' is a DOM element, not a jQuery object. You could do $(this).attr('id'), but this.id is simpler. -Mike From: Jason HTML: ul id='list' li id='name1-link' link /li li

[jQuery] Simple Code, not working.

2008-11-09 Thread Jason
var lawls = 1; $('#next').click(function () { $('.item').hide(); $('.item:eq(lawls)').fadeIn(); ++lawls; }); I have multiple divs, that I would like to sequentially appear when a button is clicked. My current code isn't working. This will work: $('#next').click(function

[jQuery] Traversing Question with Parent and Children

2008-10-25 Thread Jason
I have: $(.link).click(function () { //somehow select the parent div }); I've looked at 'children' and 'parent' traversing but I can't wrap my head around a solution for this problem. Thanks in advance, you guys are great. -Jason

[jQuery] Re: Traversing Question with Parent and Children

2008-10-25 Thread Jason
Resolved. On Oct 25, 11:51 am, Jason [EMAIL PROTECTED] wrote: I have HTML similar to the following: div class=asdf id=ghjk a href=# class=linkred border/a /div Essentially I have a div with a link inside of it. What I want to do is have the div selected when the link is clicked. I need

[jQuery] Re: Beginner: Load Bind Event Problem

2008-10-16 Thread Jason
://plugins.jquery.com/project/livequery On Wed, Oct 15, 2008 at 6:46 PM, Jason [EMAIL PROTECTED] wrote: My page: I click a tab and it loads in the html file for the tab.  I click a link on the newly loaded html file but it doesn't run the function I wrote for it.  The link only runs

[jQuery] Modal using dimScreen and Dimensions

2008-10-16 Thread Jason
I can't get it to work. Anyone have a test page I can look at to see it working.

[jQuery] Beginner: Load Bind Event Problem

2008-10-15 Thread Jason
too confusing. Any help would be appreciated. Thanks, Jason

[jQuery] using draggable from within a container with over-flow:hidden.

2008-10-08 Thread jason
I'm using jcarousel to display a list of images that I want the user to be able to drag to certain drop targets. The code looks like: ...children('img').addClass('flashCatalogPage').draggable({ helper: 'clone', opacity: .5 }); The problem is, the container for the jcarousel uses the css

[jQuery] Re: Superfish problem and solution

2008-10-03 Thread Jason Mayfield
On Oct 3, 5:09 am, Joel Birch [EMAIL PROTECTED] wrote: Hi Jason, This is interesting because the only problems I have seen like this with regard to Mac FF2 have always been easily solved by setting wmode=transparent on the 'embed' tag. Did you give that a try that first? Yes, that didn't

[jQuery] Superfish problem and solution

2008-10-02 Thread Jason Mayfield
for the FF2 detection function go to this blog post: http://jakeo.org/blog/2007/03/16/css-opacity-and-flash-transparency-in-mac-firefox/ Best, Jason

[jQuery] tablesorter with pager addon: Adding rows with ajax and auto-sorting

2008-09-22 Thread Jason Rice
I've been trying to get tablesorterPager working with AJAX addition of rows. I can get the rows added, but they are always on the last page, and are never get sorted properly. I've been trying various methods of trying to update the caches that are held by pager and tablesorter, but I haven't

[jQuery] jdMenu problem in IE6 IE7

2008-09-09 Thread Jason Stanbery
I will preface with the statement that I'm not a javascript super star. My drop down menu isn't functioning for either IE6 or IE7. In FF2 on Windows it works, acts a little funny sometimes, works fine on FF3 Safari on Mac. If I was to guess, I would probably guess that the issue is in my

[jQuery] Re: jdMenu problem in IE6 IE7

2008-09-09 Thread Jason Stanbery
I commented out stuff and noticed that the menu is showing, it's failing due to the z-index IE bug, staying behind page content in both IE6 IE7. On Sep 9, 8:58 am, Jason Stanbery [EMAIL PROTECTED] wrote: I will preface with the statement that I'm not a javascript super star. My drop down

[jQuery] Superfish Navigation bar text color

2008-09-08 Thread Jason
Hi. Maybe I'm just dumb... hehe I'm using Superfish. I want to have the text on my nav bar be white and the dropdowns be a different color. I can't figure out how to do this Help! Thanks!

[jQuery] Re: JQuery with Flash

2008-09-02 Thread Jason R Seney
Yes, you can call javascript functions (or jquery functions for that matter) in flash. (And vice versa) See ExternalInterface: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15683 On Sep 2, 8:14 pm, Gill Bates [EMAIL PROTECTED] wrote: I don't know if I could handle flash with

[jQuery] Re: descendants

2008-09-01 Thread Jason Huck
$(this).find('input[id*=mycheckname]:first'); http://docs.jquery.com/Traversing/find#expr - jason On Sep 1, 5:27 pm, matt knapp [EMAIL PROTECTED] wrote: I have some table rows: table tr class=tableRowtd/tdtd/tdtddivBlah divinput=checkbox id=mycheckname_4343/div/div/td tr class

[jQuery] Re: Nesting if statements not working

2008-09-01 Thread Jason Huck
One thing I would suggest is casting the .val() as an integer before comparing it: var dulicateCheck = parseInt($(#duplicateInput).val()); Otherwise it's doing a string comparison, which will throw off your results. - jason On Sep 1, 9:25 pm, hubbs [EMAIL PROTECTED] wrote: For some

[jQuery] Trouble loading an HTML page after animation is completed

2008-06-28 Thread Jason
).click(function(){ $(#contentbox).animate({width: 550px}, 300 ); $(#contentbox).load(interactive.html); }); Thanks, Jason

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-17 Thread Jason Huck
I think, at a bare minimum, you'll want to change this: var title = $(this h3).val(); ...to this: var title = $('h3', this).text(); ...and this: $(this h3).append... ...to this: $('h3', this).append... I think that'll solve your immediate problem. - jason On Jun 17, 2:37 pm, Dan

[jQuery] Can the JQuery file be included in another JavaScript file?

2008-06-08 Thread Jason
Hi Folks, I have been trying to consolidate a good number of scripts into include to simplify mgt. The trouble is when I include the jquery file it does not recognize the jquery functions. If I include it directly in the html page all works fine. I have even included remote files that I have

[jQuery] Re: Can the JQuery file be included in another JavaScript file?

2008-06-08 Thread Jason
Hi Mike, Basically, I have a global javascript file called globalutilities.js. I have included the jquery and other scripts in this file to simplify code mangement. When I include jquery file this way, I get errors with $ function. When I include it directly in the html file it works. I have

[jQuery] Re: jQuery v1.2.6 is now Officially Released and Release Notes are Available

2008-06-03 Thread Jason Huck
This looks fantastic. Thanks to everyone on the team for their continued hard work. You guys rock! - jason On Jun 3, 1:46 pm, Rey Bango [EMAIL PROTECTED] wrote: jQuery v1.2.6 is now official and release notes have been posted:http://docs.jquery.com/Release:jQuery_1.2.6 The biggest

[jQuery] Re: reseting values of input fields that have been cloned

2008-06-02 Thread Jason Huck
I haven't tested this, but I think you'd just select the inputs within the clone, and reset them before inserting, like so: var clonedRow = $(tbody.gltb tr#guest_new).clone(); $('input', clonedRow).val(''); - jason On Jun 2, 11:42 am, jarp [EMAIL PROTECTED] wrote: new to jquery. here

[jQuery] Re: Newbie Q: Insert last paragraph just before fourth paragraph?

2008-06-01 Thread Jason Huck
Here's one way, no last class required, though it probably could be improved upon: $($('p').get(3)).before($('p:last')); - jason On Jun 1, 9:02 am, swortis [EMAIL PROTECTED] wrote: Hi all- I suspect this is ridiculously easy.. but I'm lost.. I'm looking for a jquery way of taking

[jQuery] tablesorter / tablesorterPager question

2008-05-30 Thread Jason Rice
tried a couple other things, re-applying tablesorter, which breaks things, and a few other event triggers. Any help is appreciated. --Jason

[jQuery] Re: Grouping Definition list items

2008-05-27 Thread Jason Huck
Have you tried using .next() ? Something along these lines (untested): $('dd.comments input[type=radio]').toggle( function(){ $(this).next('dd.feedback').show(); }, function(){ $(this).next('dd.feedback').hide(); } }); - jason On May 27, 3:57 pm, macgregor [EMAIL PROTECTED] wrote: I

  1   2   >