[jQuery] Cycle Plugin and z-index

2007-07-30 Thread Matthew
solute; top: 47px; } #picwrapper #overlay{ position: absolute; top: 5px; right: 10px; z-index: 1000; } #pics{ z-index: 900; } JS: jQuery('#pics').cycle( { pause: 1, speed: 4000, timeout: 4000 } ); Thank you, Matthew

[jQuery] Re: Cycle Plugin and z-index

2007-07-31 Thread Matthew
Hmm, strange... Positioning the overlay with a left offset works, but positioning it with a right offset doesn't. Any ideas why the right offset doesn't work? It's not a massive problem, just seems strange!

[jQuery] Re: Cycle Plugin and z-index

2007-07-31 Thread Matthew
Strange - seems to work with a left offset, but not a right offset. Doesn't matter in this case, just seems strange. Any ideas what is causing it?

[jQuery] Postcode Regex Form Validation

2007-08-08 Thread Matthew
Just spent a while working out how to do this with the form Validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ , but it's actually really logical when you get it. Still, might save someone else the effort! UK Postcodes have a fixed format and a standard regex to

[jQuery] jQuery syntax question

2009-07-13 Thread Matthew
$("p", "body#seniors #text") [2].append(something); Shouldn't that append something after the 3rd paragraph in the #text div (if it exists)? If I have the wrong syntax, how would I access the $("p", "body#seniors #text") array at different indexes? Thanks, Matthew

[jQuery] Re: jQuery syntax question

2009-07-13 Thread Matthew
nth-child(2)").after(data); }); On Jul 13, 12:22 pm, James wrote: > The eq() selector is one way of doing it:http://docs.jquery.com/Selectors/eq > > On Jul 13, 9:09 am, Matthew wrote: > > > So it seems like everyday I learn a new way to code the same thing. >

[jQuery] Re: jQuery syntax question

2009-07-13 Thread Matthew
ction(data){ $("body#seniors #text p:eq(2)").after(data); },"text"); On Jul 13, 2:11 pm, Matthew wrote: > Ok, so eq() seems to work fine, I tried nth-child but im not sure if > it worked the way I wanted. When I console.log eq() for the code

[jQuery] Re: jQuery syntax question

2009-07-14 Thread Matthew
t, not a jQuery > object, that's why you need to "rewrap" it in jQuery. > > Also, IDs should be unique (only one #text element), so you can > simplify your selector to $( $('#text p')[2] ).after(data) or $('#text > p').eq(2).after(data); > > chee

[jQuery] [validate] and [tooltip] integration

2009-08-16 Thread Matthew
I am having trouble getting tooltips to work with the generated custom error message created by the validator plugin. I noticed that the tooltips do not work on dynamically generated elements unless the $ ('a').tooltip(); is called sometime after the element is actually created. My custom error m

[jQuery] Accessing functions inside $(document).ready()

2009-09-21 Thread Matthew
Hi all I've got a js file where all the functions are wrapped inside $ (document).ready(). I want to call one of the function from within the HTML but it says that the function "is not defined". Any ideas? Cheers Matthew

[jQuery] Re: Accessing functions inside $(document).ready()

2009-09-21 Thread Matthew
thods inside this function are not available globally so I'm going to have to re- factor the code in the js file. I'm not to sure why the developer wrapped it all in the ready() function but I'll have to painfully pull it apart now... nothing's ever easy is it :) Cheers Matthew

[jQuery] Re: Accessing functions inside $(document).ready()

2009-09-21 Thread Matthew
onClick to call Action1() and it doesn't work. So this must be Mike suggested binding it to the body so that it's available globally. Cheers Matthew On Sep 22, 10:20 am, Matthew wrote: > Hi guys > > Thanks for the great feedback. MorningZ was right on the money with

[jQuery] Re: Accessing functions inside $(document).ready()

2009-09-21 Thread Matthew
Ok thanks MorningZ. I've taken a different approach. I'm just binding the onClick logic to the button within the .ready() block. Thanks again for all the help! Cheers Matthew On Sep 22, 10:39 am, MorningZ wrote: > Mike's suggestion indeed is the rest of it...  i was just t

[jQuery] Re: Problem with loading SELECT on change of other select

2009-06-23 Thread Matthew
Question about the code, in the change() event, why are you calling two functions for the callback? I though change() could only get one function as a parameter. On Jun 23, 11:44 am, Paul wrote: > Hi there, > > This is what I'm trying to do: > > When a user selects a group in the first SELECT bo

[jQuery] Using slideDown in a slideUp callback

2009-06-23 Thread Matthew
n my above example the $("#pageWrap").slideUp just jumps up without a slide. I need the callback so I can have the effects happen after the initial slideUp. Since I'm calling effects on different elements I can't do the dot chain. Any other way to make this happen? I'd like to avoid settimeout() if possible. ~ Matthew

[jQuery] Re: Using slideDown in a slideUp callback

2009-06-24 Thread Matthew
eWrap").slideUp(1000, function(){ >                doSlideDown(); >                $("#btn_uopBack").fadeIn(250); > > }) > > ..fredrik > > On Jun 23, 8:52 pm, Matthew wrote: > > > Hi all, > >    I am trying toslideUpa container Div and using theslideUp's >

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread Matthew
$("select option).attr("selected","selected"); if your option or select tag has an id use that: $("#select #option").attr("selected","selected"); now depending on what you are trying to do there are different ways to get an array of all the options in a select tag and to determine what option s

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Matthew
when you use this code $("tr td") it would create an array of all those td's in the tr. So then we just need to cycle through the first two and set the attribute then break the cycle. var counter = 0; $("tr td").each(function(){ $(this).attr("attribute","value"); counter++;

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Matthew
e while only accessing the first two td's for each tr. On Jun 24, 10:43 am, Matthew wrote: > when you use this code $("tr td") it would create an array of all > those td's in the tr. So then we just need to cycle through the first > two and set the attribute then break t

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Matthew
if you have nested tables. I'm at work so I cant spend the time to test the code before hand. On Jun 24, 10:50 am, MikeyJ wrote: > Thx Matthew! Great explanation. > > I probably should have worded one thing a bit differently...I'd like > to set this attribute for "the fi

[jQuery] Re: how can i set the attribute of an item in a select box to selected?

2009-06-24 Thread Matthew
rray where $("#select option").each(function(){}); will iterate through each option in a select. Inside function(){} you would then set the attribute. On Jun 24, 11:08 am, shaded wrote: > ravi, matthew, > > thanks for the responses, and i totally agree that this group is huge. > Go

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Matthew
n(":first").attr("attribute","value"); }); On Jun 24, 11:14 am, MikeyJ wrote: > Looks like your first two offerings throw this error in Firebug: > > "unlabeled break must be inside loop or switch" > > Your last example works but it only works

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread Matthew
t; > $("table#mytableid tr").each(function() { >   $("td:first",this).attr("align","right"); > > }); > > On Jun 24, 11:31 am, Matthew wrote: > > > sorry about the error, replace "break;" with "return false;" Yeah, > >

[jQuery] Re: Protect images

2009-06-24 Thread Matthew
can you add more specifics? how are you increasing size? Are you using new resized images or just changing the dimensions using javascript? If you are changing dimensions, have you tried the tutorials you found or do they not work after you change dimensions? On Jun 24, 11:49 am, Mario Soto wrot

[jQuery] Re: multiply 2 input fields on change

2009-06-24 Thread Matthew
var totalPrice = $(UNITPRICE).val() * $(UNITQUANITY).val(); $(TOTALPRICE).val(totalPrice); On Jun 24, 2:03 pm, efet wrote: > Hi, > > I have three input fields as UNITPRICE & UNITQUANTITY and TOTALPRICE. > UNITPRICE's value depends on a product chosen in the preceding tab. > Now, I want UNITPRIC

[jQuery] Re: Slider moveTo stopped working

2009-06-24 Thread Matthew
Check out the 'value' option, moveTo was removed but value should do the same: http://docs.jquery.com/UI/API/1.7/Slider On Jun 24, 4:35 pm, StanW wrote: > If the moveTo function is now missing from the jQuery slider UI, is there a > way to use the value options to set sliders? > > I need to have

[jQuery] Re: Slider moveTo stopped working

2009-06-24 Thread Matthew
Sorry, didnt realize you answered the moveTo question. On Jun 24, 5:09 pm, Matthew wrote: > Check out the 'value' option, moveTo was removed but value should do > the same:http://docs.jquery.com/UI/API/1.7/Slider > > On Jun 24, 4:35 pm, StanW wrote: > > > If the

[jQuery] Re: Constrain/restrict mouse pointer to a selector

2009-07-08 Thread Matthew
I don't have time to be more specific, but just from doing some searching on the internet, it seems like javascript can only return properties of the mouse and not control it directly. Instead of controlling the mouse cursor, couldn't you expose some sort of warning if the user moved outside the e

[jQuery] Re: both 'if' and 'else' blocks being executed

2009-07-10 Thread Matthew
Can you explain to me why you are disabling a hidden input field? I assume the idea is that they are both checkboxes with the the same name attribute. Maybe I could help if I understood why you are doing this. On Jul 10, 1:38 pm, Matt Zagrabelny wrote: > Greetings, > > I am experiencing some cra

[jQuery] Re: both 'if' and 'else' blocks being executed

2009-07-10 Thread Matthew
; On Fri, 2009-07-10 at 14:40 -0700, Matthew wrote: > > Can you explain to me why you are disabling a hidden input field? I > > assume the idea is that they are both checkboxes with the the same > > name attribute. Maybe I could help if I understood why you are doing > > t

[jQuery] Re: both 'if' and 'else' blocks being executed

2009-07-10 Thread Matthew
; On Fri, 2009-07-10 at 14:40 -0700, Matthew wrote: > > Can you explain to me why you are disabling a hidden input field? I > > assume the idea is that they are both checkboxes with the the same > > name attribute. Maybe I could help if I understood why you are doing > > t

[jQuery] Selectable and Sortable, with copy and move.

2009-10-27 Thread Matthew
Hi All, Have tried to find an example of this, and played around a bit but got no where. I want to have 2 sortable lists (just like in the demo http://jqueryui.com/demos/sortable/#connect-lists) However I also want to be able to select multiple items and then drag them all from one list to anot

[jQuery] Re: Selectable and Sortable, with copy and move.

2009-10-28 Thread Matthew
Thanks Karl have posted it over there as well.

[jQuery] trying to get jQuery plugin to work with onclick IE6/7

2009-11-10 Thread Matthew
Okay, So my code works in FF, IE8 and Safari (I've only tested in the latest versions of all). But in IE6 and IE7 I get an error saying "Object doesnt support this property or method". http://www.curvesinformation.com/ index.php?Referrer=GFC&campaign=GF" target="_blank"> curvesLeadForm is a c

[jQuery] Re: trying to get jQuery plugin to work with onclick IE6/7

2009-11-10 Thread Matthew
a database then pass them into the curvesLeadForm function using on page php echos. I guess there are ways around using onclick but they seem to involve rewriting a lot of code. Thanks again. ~ Matthew On Nov 10, 12:52 pm, Scott Sauyet wrote: > On Nov 10, 2:22 pm, Matthew wrote: > > >

[jQuery] Re: Show Loading

2009-11-10 Thread Matthew
Nathan's plugin looks like the way to go, but before I saw his plugin I would always just show some loading div or paragraph before the ajax call, then hide it in your 'success:' function in the ajax call. $('#loader").fadeIn(500); do your ajax thing success: function(){ $('#loader").fadeOu

[jQuery] Re: events propagation once again

2009-11-10 Thread Matthew
Sorry I can't be more specific Norbert, I'm at work and have limited time. Check out the "Trigger" event for jQuery: http://docs.jquery.com/Events/trigger Looks like you could listen for a click on the 'li' then trigger a click on the child 'a' tag without worrying about extracting the target or

[jQuery] Re: events propagation once again

2009-11-10 Thread Matthew
Hi Norbert, If you read up on the jQuery click event http://docs.jquery.com/Events/click you will see that it binds a click listener to whatever element you apply it to so in your case: $("#fake_href").click(); <- this is 'listening' for a user to click on some element with id = #fake_href, so

[jQuery] IE7 onclick object.function

2009-11-11 Thread Matthew
I posted this earlier, but perhaps I didn't explain it right. Im trying to get code that uses this syntax to work in IE6/7 It seems like IE6/7 do not like the $(this).function syntax, although if I just alert($(this)) I get [object Object] which I think is what should be expected. I am using a

[jQuery] Re: IE7 onclick object.function

2009-11-11 Thread Matthew
n't bubble up. >                         event.stopPropagation(); >                         //run custom function. >                         cutsom_function(parameters); >                     } >                 ); >             }); >         >     >     >         More Details >     >

[jQuery] Re: IE7 onclick object.function

2009-11-11 Thread Matthew
o + "\n" + >                         "varthree: " + varthree + "\n" + >                         "varfour: " + varfour + "\n" + >                         "varfive: " + varfive ); >             } >         >     >  

[jQuery] Re: image refresh problem due to browser cache

2009-11-12 Thread Matthew
you could try appending some sort of query string on the end of the image name? http://images.earthcam.com/ec_metros/newyork/newyork/lindys.jpg?refreshImg=[random_number]"; for [random_number] try generating a random number using javascript then putting it there. I have heard that passing a query

[jQuery] Store a Css class as a variable?

2008-09-03 Thread Matthew
Hi, I just started playing with jquery yesterday and I'm interested in assigning the css class of an element to a variable and then applying that class to a div in another section. While I've been looking through multiple tutorials and searching on the discussion board I haven't seen it. i.e.

[jQuery] keyboard-based form submission circumvents validator

2008-10-31 Thread Matthew
in short: when I use FF3 and submit a form by hitting the enter-key after typing a few characters in an input field, the validator thinks the form is valid even when it's not, and subsequently submits the form. to see what i mean, go to any jquery.validator demo: http://docs.jquery.com/Plugins/

[jQuery] malsup cycle plugin renders vertically on page load.

2008-04-03 Thread matthew
Hi all, Check out http://pricebeep.co.uk. I'm pulling the content for the cycle plugin dynamically. Frequently it will be rendered vertically, before constructing the actual horizontal carousel. I think I've worn my brain out over the last month or so getting the site up and running, so can any

[jQuery] Re: malsup cycle plugin renders vertically on page load.

2008-04-04 Thread matthew
Brilliant. Thanks so much. Matt On Apr 3, 5:15 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I'm pulling the content for the cycle plugin dynamically. Frequently > > it will be rendered vertically, before constructing the actual > > horizontal carousel. > > The vertical rendering is how

[jQuery] External links not working within jquery.accordian

2008-08-18 Thread Matthew
http://www.firstlineeducation.ca/ Hi! I'm new to jQuery, and just realized that somewhere along the line while coding the accordian and cycle plugins into this page, and then finishing the rest of it the links within the accordian don't work - they just scroll the accordian section back up into

[jQuery] External links not working within jquery.accordian

2008-08-18 Thread Matthew
http://www.firstlineeducation.ca/ Hi! I'm new to jQuery, and just realized that somewhere along the line while coding the accordian and cycle plugins into this page, and then finishing the rest of it the links within the accordian don't work - they just scroll the accordian section back up into

[jQuery] Ingrid, the jQuery datagrid!

2009-07-21 Thread matthew knight
Hi all, Happy to announce that the Ingrid datagrid project is still very much alive! With the help of Patrice Blanchardie, Ingrid has been moved to its new home on Google Code, and includes quite a few bug fixes and updates (full list below). Also included is an updated example of a remote PHP

[jQuery] .replaceWith Issue

2009-08-18 Thread Matthew Wehrle
Hey guys, I'm having a bit of an issue with the site I'm building at the moment. It's currently under http://www.swfmania.co.uk/dotcommon with the CSS at http://www.swfmania.co.uk/dotcommon/style.css and the relevant jQuery file at http://www.swfmania.co.uk/dotcommon/tabs.js If you're using Fire

[jQuery] Re: .replaceWith Issue

2009-08-19 Thread Matthew Wehrle
Brilliant! Thanks very much. :D

[jQuery] unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
. Any help is appreciated. -Matthew

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
no sorry its not on a public server where anyone can access it. I have been going back and taking things out.. and puting the stuff back in to see what part is making it fail.. On Sep 3, 2:26 pm, Mike Alsup wrote: > > Im using the blockUI() plugin in jquery and I attached a click event > > to a

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
It seems to bug because i am using a Ive tried the tag inside the and outside the like below. If i take out the tag, it goes away fine without issues. $(function() { $.blockUI({ message: $('#question'), css: { width: '275px' } }); $('#btnClose').cl

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
Yup took out the z-index too. I have it in there because when i use the UI datepicker it goes behind the blockUI. Still has the IE problem. On Sep 3, 4:16 pm, MorningZ wrote: > have you tried dropping the z-index styling?  that's got to be an > issue > > On Sep 3, 3:49 p

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
Looks like i have to put in all the tags etc... I was just trying to run a quick test so i didnt put all the tags in there. When i put it all in, the unblockUI worked. I feel like a an Id10t. -m On Sep 3, 4:19 pm, Matthew Abbott wrote: > Yup took out the z-index too. I have it in th

[jQuery] Re: jquery menu that works with ie6 (plugin?)

2009-09-04 Thread Matthew Abbott
Do you know how to enable the top level links in the jdmenu? I never could get the top level links in the menu to work once i applied the jdmenu to a unordered list. On Aug 21, 4:09 pm, con-man-jake wrote: > Did it.  Works like a charm!  Thanks again Jack. > jake > > On Aug 21, 9:27 am, con-man

[jQuery] Re: Detect form change

2009-09-04 Thread Matthew Abbott
Here is a plugin that may get you started. http://bit.ly/cZQ9K

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Matthew Abbott
Yeah take out thetags in your example, and in IE you should get the error i was talking about. just leave the script tags and the div. On Sep 4, 8:25 am, Mike Alsup wrote: > > It seems to bug because i am using a > > Ive tried the tag inside the and outside the like > > below. > > If i t

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Matthew Abbott
Normally you wouldnt. I just had a blank page and didnt put in all the html tags in there. Felt stupid afterwards. It worked in Firefox. Anyway, it works fine now. all is good. On Sep 4, 10:08 am, Mike Alsup wrote: > > Yeah take out thetags in your example, and in IE > > you should get th

[jQuery] Re: TableSorter and colspans

2009-09-04 Thread Matthew Abbott
looks like it does. http://www.datatables.net/examples/ Cheers, Matthew On Sep 4, 12:14 pm, Mike Alsup wrote: > Anyone familiar with this plugin?  The docs say that it supports > colspans but it doesn't appear to do so.  The script has a > checkCellColSpan function defined but it is

[jQuery] Re: $(this).css({"color" : "red"})

2009-09-12 Thread Matthew Rolph
http://testingspot.hostcell.net/sandbox/tests/css.jquery.test.html it somehow doesn't work at all not even the css does it matter where the style and scripts are in the of the document On 9/12/09, Mike Alsup wrote: > >> see that code in the subj.? i'm using FF 3.5, and no matter what i >> do, .c

[jQuery] Re: $(this).css({"color" : "red"})

2009-09-12 Thread Matthew Rolph
ot;).css("color" : "red"); > > should be > >$("p.blue").css({"color" : "red"}); > > Any syntax error like that will stop the script dead. > > > On Sep 12, 9:58 am, Matthew Rolph wrote: > > http://testingspot.hostcell.ne

[jQuery] Re: $(this).css({"color" : "red"})

2009-09-13 Thread Matthew Rolph
above (the pastebin links) work in FF3.5 (on OS > X) > > > On Sat, Sep 12, 2009 at 5:07 PM, Matthew Rolph wrote: >> >> it's still not working right so i'm getting safari and seeing if that works >> out >> >> >> On Sat, Sep 12, 2009 at 1:10 P

[jQuery] Re: $(this).css({"color" : "red"})

2009-09-13 Thread Matthew Rolph
CSS Test<http://testingspot.hostcell.net/sandbox/tests/css.jquery.test.html> On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph wrote: > i have win so yea and i figured out, for some reason, > double quotes: > selectors(i.e. $("p")) > single quotes: > handlers or at

[jQuery] Re: $(this).css({"color" : "red"})

2009-09-13 Thread Matthew Rolph
New Link: CSS<http://testingspot.hostcell.net/sandbox/tests/jquery/css.html> > On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph wrote: > >> i have win so yea and i figured out, for some reason, >> double quotes: >> selectors(i.e. $("p")) >>

[jQuery] Re: Ajax

2009-09-15 Thread Matthew Rolph
well, i fixed that at least the source shows right now can you see any probs. now? On Mon, Sep 14, 2009 at 9:15 PM, Steven Yang wrote: > hi > this is all i see in the source of your page > >Ajax - jQuery Tests src="[jQuery] Re: Ajax
ue, Sep 15, 2009 at 7:05 PM, Matthew Rolph wrote: > >> well, i fixed that at least the source shows right now >> can you see any probs. now? >> >> >> On Mon, Sep 14, 2009 at 9:15 PM, Steven Yang wrote: >> >>> hi >>> this is all i see in the so

[jQuery] jQuery - Random Selection

Hey, At current I'm building a site in co-operation with 5 of my close friends. On our homepage (See here: http://www.dotcommon.co.uk/index.html). You'll notice a bio box with 6 names down the left hand side and, thanks to jQuery, when these are clicked the bio box loads different information abo

[jQuery] Re: jQuery - Random Selection

Cheers for the help guys. I get exactly what you're driving at, but as I am a complete Javascript newb I have no idea how to put all of that code into my script. If you could be a bit more specific that'd be awesome. Cheers again, Matt.

[jQuery] Re: [autocomplete] Search Page Replacement

; link further down goes somewhere else.) Regards, Matthew 2009/4/27 Tom Worster > On 4/26/09 9:12 AM, "mattvick" wrote: > > > I need the list of results to appear without any of them highlighted > > so hitting the return key submits the form without updating the t

[jQuery] Re: A new take on form validation, need code review and feedback

Hey Nicolas, Great work! I really like this idea. Maybe you can put the explanation and examples from your email onto the web site. I've bookmarked the page for future reference but this email really gives a quick summary on what you are trying to accomplish and how to use it. Thanks, Matt Pe

[jQuery] html() and clone() causing problems in IE

I am aware that IE provides bad HTML from the innerHTML property of a DOM element but when I duplicate a hidden template layer in my page and add the clone to the page IE is showing some of the input tag's inner contents within the text input area. Please see the attached screen shot. http://www

[jQuery] Re: [ANNOUNCE] New plugin: Loading

Great job! Just a comment on the demo page. When I set the mask to true I lose the ability to interact with the page, as designed of course! :) Maybe you could make a timeout of like 5 seconds. Otherwise I have to refresh the page just to test out some other things. A suggestion I have for th

[jQuery] jQuery AJAX Question

I was curious if there was a way to hit the current xhr object in the success callback. I've been tinkering with it, and have been unable to figure out how to do that. The reason I ask is because I am trying to debug an application I've been working on, and sometimes the response XML is not forma

[jQuery] Re: jQuery AJAX Question

That's what I was thinking. I'd have to set some sort of flag in the success callback since it's executed first, and then have the complete reference that flag and process the error accordingly. Thanks for your help, Mike. On Jan 7, 2:58 pm, Mike Alsup wrote: > > I was curious if there was a wa

[jQuery] Re: jQuery Datagrid Plugin v.7

Thanks Marco, Also cheers for reporting the bug with the page toolbar textbox - this is now fixed. Download the latest here: http://reconstrukt.com/ingrid/index.html#download Matt On Oct 3, 8:00 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote: > Matt, > > congratulations!!! > > Very very very

[jQuery] Re: jQuery Datagrid Plugin v.7

@Sharique Yes, it'll work with .NET (just create an aspx page that spits out a table as per the instrux), and set the 'url' param accordingly in the options. Remember, ingrid's just making an ajax call to some more HTML. Something like this will work: $(document).ready( function() {

[jQuery] Re: Session management in an Ajax app

There are actually two things to think of here. I don't know about CF specifically but it seems that most web servers should update their session timeout if data has been accessed in any way. I would assume that any AJAX request to the server by the browser would update this status. If y

[jQuery] Re: Session management in an Ajax app

The multiple open browser window issue is an old problem for session management and I wonder if it's been solved elsewhere. With different browsers handling cookies differently for multiple windows it might be hard to find a catchall solution. Just off the top of my head: You may want to gene

[jQuery] Re: JSON + JQUERY Problem! Need help ASAP toJSONString not a function

Hi Bryan, We had this problem as well. The solution was to use jQuery's JSON functions $.toJSON() & .parseJSON() instead of those built into the JSON library. Matt Penner -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bryank Sent: Monday, Nove

[jQuery] Re: JSON + JQUERY Problem! Need help ASAP toJSONString not a function

em...maybe even with 1 example. I am not a JS guru by any stretch of the imagination, so I usually have to follow by example. Thanks, Bryan On Nov 5, 2:53 pm, "Penner, Matthew" <[EMAIL PROTECTED]> wrote: > Hi Bryan, > > We had this problem as well. The solution was t

[jQuery] Would be nice to select objects using attribute comparisons

I have several options in a select element, each whose value is an integer. I would love to be able to select those above a threshold, such as something like: $("#mySelect option[value>5]") I know I can do this with :gt(index) but I'd rather use the actual value for less hard coding and be

[jQuery] Re: Would be nice to select objects using attribute comparisons

Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 7, 2007, at 2:33 PM, Penner, Matthew wrote: I have several options in a select element, each whose value is an integer. I would love to be able to select those above a threshold, such as something like: $("#mySelect option[val

[jQuery] Re: Can jQuery implement the image popup tips function?

There are several plug-ins that can do exactly this. Here are a couple: * BetterTip * clueTip Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nkw Sent: Wednesd

[jQuery] Ingrid, jQuery Datagrid : Update, v0.9.1

Hi All, I've just posted the latest version of Ingrid datagrid plugin. Incorporates a lot of feedback I've received over the last couple weeks, including: - Row selection - Saving state (page number, column sort & direction, selected rows) - Exposed object model, added helper methods like ingrid

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

to have folks do cross browser testing on this > > in order to help Matt truly iron out any issues. People with Safari 2.x > > installed would be especially helpful. > > > Rey > > > matthew knight wrote: > > > Hi All, > > > > I've just posted t

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

ample, and watch the request/response times.) Cheers, Matt On Nov 12, 7:47 am, matthew knight <[EMAIL PROTECTED]> wrote: > Excellent, thanks Karl for that feedback - I'll make a note of it. > > Anything else, let me know > > Matt > > On Nov 11, 11:57 pm, &quo

[jQuery] Re: Nested getJSON

I don't see anything physically wrong with a nested $.getJSON. I suspect either your code or the return results. I would extract the two callback functions into actual functions rather than just inline. Then I think you should be able to use Firebug's breakpoints on the callbacks to step throug

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

Wow, this is great! I can't wait to use it on some of my apps. Great job! Matt Penner -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Thursday, November 29, 2007 12:46 PM To: jquery-en@googlegroups.com Subject: [jQuery] [A

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

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-en@googlegroups

[jQuery] Re: Stupid little game :)

Heh, great job! :) Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Wednesday, December 19, 2007 12:41 PM To: jquery-en@googlegroups.com Subj

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

Very nice! I've been wanting antialiased corners for a while. Any possibility of working with Dave Methvin and "merging" the two corner plug-ins? I can see this being a source of confusion for other users. Good job! Matt Penner -Original Message- From: jquery-en@googlegroups.com [mail

[jQuery] Re: Aspect Oriented Extension for jQuery

Someone else can probably give a better definition of AOP, but a very simplistic view is the ability to add additional functionality (aspects) to your code. This functionality is contained in its own methods and objects, leaving your original code nice and clean. Here's an example I heard/read

[jQuery] Re: Using jQuery with Wordpress

Is jQuery working at all? I've noticed that WordPress can be very intrusive when you put javascript in posts. When I would first write a post with js embedded it would work, but the instant I edited it online the "helpful" editor textbox would reformat my js and break it. If you want your galle

[jQuery] Stefan Petre's Datapicker with IE 1.3.1 - Unknown runtime error

I am trying to upgrade Stefan Petre's Date picker to work with Jquery 1.3.1. http://www.eyecon.ro/datepicker/ In IE7 I am getting a 'Unknown runtime error'. I have been able to track it down to an append 'cal.find('tr:first').append(..', but have not made any additional progress. Any ideas wh

[jQuery] [ot] Browser capabilities detection?

This is slightly off topic but related. I am tasked with migrating our organization's static website to a more dynamic one with plans for several web applications for our users. I plan on using jquery as my js foundation. Our users are various school districts which may have a variety of b

[jQuery] Proper method to check checkbox state

Hello everyone, I was wondering what the "proper" way to check if a checkbox is checked is using jquery? I've run into two methods... both of which appear to work fine in IE,FF,Chrome and safari. http://jsbin.com/ifoka/edit Assuming that I have two checkboxes, one with an id of test1 and one wi

[jQuery] Re: Has anyone used these jQuery books?

Hey Karl, I was interested in this question also and read your great response. As one of the authors your thoughts hold a lot of weight for me. Thanks for the recommendation almost against your older book. This is what I love about this community. It's about the tools and the community users/c

[jQuery] Re: Shadowbox Media Viewer

Wow! This is great! Good jo! Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mjijackson Sent: Friday, January 25, 2008 1:45 AM To: jQuery (English) Subject: [

  1   2   >