[jQuery] html method is inserting html as escaped markup (html source)

2009-11-22 Thread sean
using: $("#modal_content").append("Some html, tags should not be visible."); Does anyone know why this might be? On other ajax requests (not with uploads) the dom manipulation works as expected Thanks, Sean

[jQuery] Re: Datepicker and Jquery updating the value of pulldown menu

2009-09-18 Thread Sean McKenna
"updating the values of the pulldown menu ounce the user have choosen a date from the Jquery datepicker" Something like this should work in the datepicker include onSelect: updateLinked then (change as needed for your pull down ids) // Update three select controls to match a date picker s

[jQuery] Re: (validate) email validator

2009-09-14 Thread Sean McKenna
While technically this is correct, a more restrictive approach might be preferable because some email services (hotmail for one) will not send to an email address using anything other than alphanumerics, dots, hyphens, and underscores. On Sep 14, 11:02 am, Scott Haneda wrote: > The one letter fo

[jQuery] Re: multi date selection

2009-08-19 Thread Sean McKenna
http://keith-wood.name/datepick.html#multi On Aug 19, 2:25 am, Rama Krishna wrote: > multipule date selection > > -- > RamaKrishna.AVS

[jQuery] Re: jQueryUI datepicker, select multiple non-contiguous dates?

2009-08-12 Thread Sean McKenna
I needed this type of continguous and non-contiguous date selection and for this one case I went with the jQuery plugin Datepicker (jquery.datepick.js) instead of the jQueryUI Datepicker which I use elsewhere. It has a multiSelect option that works great. Hopefully this functionality may be inc

[jQuery] IE8 bug/behavior: HTML Selects (DispHTMLOptionElement) and JQuery Form and Validation

2009-08-03 Thread Sean
My JQuery POST is supposed to re-render new content in the Lightbox, but this was not happening in IE8 and IE8 Document Mode. Would work in IE8 Browser Mode and IE7 Document Mode. Turns out there is something odd about how an HTML Select Option on the form was handled. Regardless of how I define

[jQuery] Re: small problem

2009-07-29 Thread Sean Giles
It works fine for me in FF 3.5.1 and Safari 4.0.2 on Mac On Wed, Jul 29, 2009 at 1:55 AM, GaVrA wrote: > > bump > > On Jul 26, 2:18 pm, GaVrA wrote: > > Maybe it has something to do with the fact i am using Windows 7? > > > > On Jul 26, 12:27 pm, tain wrote: > > > > > Really wierd. > > > > >

[jQuery] Registration Point

2009-07-27 Thread sean
Hi Everyone, I am trying to get images to animate from the center in height and width. I can get the animation to work but can't find anywhere how to get it to work from the central point! Hopefully someone can help me here. Thanks Sean

[jQuery] unsubscribe

2009-07-06 Thread SEAN CLIFFORD
> Date: Sat, 4 Jul 2009 09:49:03 -0700 > Subject: [jQuery] Re: Inclusion of external scripts ("best" approach) > From: ollo...@web.de > To: jquery-en@googlegroups.com > > > Will check that one now. > > Thanks once more, Karl! > > On 4 Jul., 17:41, Karl Swedberg wrote: > > --Karl > >

[jQuery] Re: Using a selector recursively

2009-05-26 Thread sean
n a > $(document).ready(function(){ ... }); ? > > On Thu, May 21, 2009 at 16:49, sean wrote: > > > I forgot the '#' sign in the sample code I provided. > > > The problem I am having is that the code does not work. For some > > reason, If i remove the tags, it works, but keeping them in > > makes it not work.

[jQuery] Re: Using a selector recursively

2009-05-21 Thread sean
I forgot the '#' sign in the sample code I provided. The problem I am having is that the code does not work. For some reason, If i remove the tags, it works, but keeping them in makes it not work.

[jQuery] Using a selector recursively

2009-05-21 Thread sean
I have the following code: Test1 Logout var obj = $('test'); // used specific div, as this is in a huge document obj.find('.ajaxApplyIgnore a').addClass('red'); The js code above will not select the Test1 link, even though it is found within the div layer with the aj

[jQuery] Re: Preventing animations from piling up due to fast mouse movement

2009-04-21 Thread Sean O
Brandon Aaron covered this issue on Learning jQuery a few months back: http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup HTH, SEAN O http://www.sean-o.com AppleTurnover wrote: > > > I've got a jquery function set up where it simply opens up a

[jQuery] Re: submit() question

2009-04-06 Thread Sean McKenna
I'm not sure I understand what you are trying to do, but if the requirement is to pass the values to the server, you can include them in the data parameter of the ajax routine. data: $(this).serialize() + "&add_item=1", On Apr 5, 3:10 pm, debussy007 wrote: > What do you mean by "wrap

[jQuery] Re: Validation CheckBoxes group

2009-04-06 Thread Sean O
Luigi, This should work for you: var isChecked = false; $('.campi[name="license"]').each(function(){ if ( $(this).attr('checked') ) isChecked = true; }); SEAN O http://www.sean-o.com Ciupaz wrote: > > Hi all, > in my .aspx page I have a seri

[jQuery] Re: simulate radio with checkboxes in a table

2009-03-23 Thread Sean O
s the same class name, uncheck (radio-esque functionality) if ( $(this).hasClass(time) ) $(this).attr('checked',''); }); }); Demo: http://jsbin.com/umoqe I would add visual indications of groupings (a thin horizontal rule, e.g.) for clarity as well.

[jQuery] Re: show hide random rows

2009-03-19 Thread Sean O
Scott, Ricardo, great thoughts and great code. It is an interesting issue with many attack vectors; I hope the OP is getting something out of all this... I will expect at least as much code and analysis for my next posted problem! ;) SEAN O _ http://www.sean-o.com http://twitter.com

[jQuery] Re: show hide random rows

2009-03-18 Thread Sean O
Scott, Nice job. I like the logic, and the fading out of unselected rows. My solution was, admittedly, a quick one. It certainly wouldn't scale past 1,000 rows or so -- especially with the majority # selected -- but if the 10/50 number is firm, seemed to work OK. --SEAN O Scott Sau

[jQuery] Re: show hide random rows

2009-03-18 Thread Sean O
Bob, Try this: http://jsbin.com/esoba Code: http://jsbin.com/esoba/edit It shouldn't matter how YUI is IDing your table rows, as you can pluck them out by index. HTH, SEAN O http://www.sean-o.com http://twitter.com/seanodotcom Bob O-2 wrote: > > > I was wondering if anyo

[jQuery] Re: Hide/Show glossary page require for website using jQuery

2009-03-06 Thread Sean O
Have you seen the listNav plugin? http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx Sounds like it fits well with what you're looking to do. SEAN O http://www.sean-o.com http://twitter.com/seandotcom JP-47 wrote: > > > Hi There > > I am trying to implement a gloss

[jQuery] Re: Show hide and print

2009-03-04 Thread Sean O
Have you tried overriding the override? i.e. #gototop { display:none !important; } SEAN O rayfidelity wrote: > > > Jquery show or fadein overrides the print stylesheet that's the whole > problem. > > On Mar 4, 2:56 pm, Sean O wrote: >> You're best s

[jQuery] Re: Show hide and print

2009-03-04 Thread Sean O
You're best served doing that simply with a CSS print stylesheet. Just add: and set all elements you don't want to print to "display: none". Here's an Oldie-but-Goodie guide to creating a nice one: http://www.alistapart.com/articles/goingtoprint/ HTH, SEAN O h

[jQuery] jQuery plugins & function calls

2009-03-03 Thread Sean
I have a jQuery plugin that adds a series of links to my page, and when each one is clicked, it should display the index of the link. The problem is that every link displays the string "11". This is because when I bind the click method, I pass in an actual function, which doesn't get interpreted

[jQuery] jQuery for Flex - a Behavior Injection Framework

2009-03-02 Thread Sean Clark Hess
jQuery for Flex - a Behavior Injection Framework http://code.seanhess.net/?p=156 [...] I’ve just finished my pre-alpha version of a Behavior Injection framework for Flex. It adds support for functionality similar to jQuery for flex, along with support for a more complete CSS syntax. The approach

[jQuery] Re: Newbie needs Help with jquery logic

2009-03-01 Thread Sean O
This was a fun one to play with. I think this is the effect you're after... Demo: http://jsbin.com/iwile Source: http://jsbin.com/iwile/edit It's pretty concise & self-explanatory, but if you have any questions, just reply. SEAN O http://www.sean-o.com http://twitter.c

[jQuery] Re: [tooltip] help please

2009-02-28 Thread Sean O
Paul, Two suggestions: 1) remove the dimensions plugin script (it's integrated into jQuery as of this version) 2) close your doc ready function with parens & semicolon: $(function() { $('#set1 *').tooltip(); }); SEAN O http://www.sean-o.com paulmo wrote: > &

[jQuery] Re: google suggest

2009-02-28 Thread Sean O
Have a look at the excellent Autocomplete plugin by Jörn Zaefferer: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ SEAN O http://www.sean-o.com anjith wrote: > > > Hi, > > Hey please help i want to do google suggest i have customised many > code

[jQuery] My birthday gift to the jQuery Community

2009-02-27 Thread Sean O
It's been a while since I created anything publicly fun - kids have that effect on you :) So I figured I'd offer up my birthday gift to you: F3: Fast Flickr Findr http://www.sean-o.com/f3 Find Flickr photos fast. Built using jQuery, developed rapidly on Remy Sharp's JSBin.

[jQuery] validate - non U.S. phone numbers

2009-02-20 Thread Create Sean
I would like to be able to validate phone numbers but accept any number, dash or parenthesis without having restrictions that are currently in the plugin i.e. area code etc. how would I go about adding that? http://docs.jquery.com/Plugins/Validation

[jQuery] Re: [validate] ie6 runtime errors

2008-12-21 Thread Sean Allen
On Dec 21, 2008, at 11:26 AM, DumpsterDoggy wrote: First glance, it looks like your first script tag's src attribute is incorrect: that makes no difference to the error one way or another. http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js "> has the same

[jQuery] [validate] ie6 runtime errors

posted previously without proper [validate] in title.. reposting... -- i have this code: