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
"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
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
http://keith-wood.name/datepick.html#multi
On Aug 19, 2:25 am, Rama Krishna wrote:
> multipule date selection
>
> --
> RamaKrishna.AVS
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
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
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.
> >
> > >
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
> 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
> >
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.
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.
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
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
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
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
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.
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
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
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
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
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
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
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 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
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
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:
>
&
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
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.
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
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
posted previously without proper [validate] in title..
reposting...
--
i have this code: