I'm put an image, which when it clicks it will delete some data on the
database
On above example, when user click it will delete data with id = 13 on
database.
This is the function
function removeEdu(id) {
$('#dialog').dialog('open');
return false;
}
And
Hmm,
there is an easier than this.
$("#patientdvTop1").click( function() {
$("#patientdvContent1").slideToggle("fast");
});
On Fri, May 29, 2009 at 7:19 AM, Nitin Sawant wrote:
>
> Hello,
> I wrote following code for slide-up and slide-down animation of
> div tag,
>
> javascript:
>
> $("#
Jquery is really nice.
It helped me a lot in my Hospital Management System web application
project
Thanks a million to the people who developed the jquery.
I hope you'll add more cool features to jquery..
Thanks again
regards,
Nitin Sawant
frm NIIT Malad (Mumbai-IN)
I'm not sure if thee is an automated command for this but one method is to
dynamically add the content to print into an IFrame then print only that
IFrame. Then once that is done - remove that IFrame.
On Fri, May 29, 2009 at 5:05 AM, Aaron Johnson
wrote:
>
> Hello...
>
> I would like to have a "p
Hello,
I wrote following code for slide-up and slide-down animation of
div tag,
javascript:
$("#patientdvTop1").click( function() {
if ($("#patientopenCloseIdentifier1").is
(":hidden")) {
$("#patientdvContent1").slideDown
("fast")
I'm put an image, which when it clicks it will delete some data on the
database
On above example, when user click it will delete data with id = 13 on
database.
This is the function
function removeEdu(id) {
$('#dialog').dialog('open');
return false;
}
And thi
Hello all,
I am a newbie to jquery and jeditable. I have a select that is working
using jeditable. However, I cannot figure out how to style the submit
button. I have the DIV of the field to edit within a of a table.
Anyone able to help me?
Thanks,
Charles
Thanks to Jack and Rey,
I have posted several thank you's to the jquery-en list and/or the
jquery-dev list and/or individual developers for jquery.
jQuery has provided an outlet for me as a programmer as much as an artist
like a painter, etc enough.
Jack I thank you for your thank-you, and Rey I
I noticed something...instead of parsing a json object I think it is
trying to parse an xml docit is hitting the catch. I think I know
what the issue is. This project was designed to work on a servlet
engine and I'm running it via IIS 7the web config needs to have
appropriate settings. Wil
I haven't formally released it yet, but feel free to use it:
http://test.flesler.com/jquery.broadcast/jquery.broadcast.js
Precarious demo:
http://test.flesler.com/jquery.broadcast/
Cheers
--
Ariel Flesler
On May 28, 5:51 am, Andho wrote:
> I need to override a jQuery method, more specifically
I generally avoid using css for initial hiding because I want users
who don't have JS or don't have it enabled to still have an
opportunity to read the content. With display:none and JS off / CSS
on, they wouldn't have that opportunity.
--Karl
Karl Swedberg
www.englishrules.co
Hello...
I would like to have a "print this page" link that when clicked, opens
up a new window with specific content and print css, in the same way
that gmail does it.
Can anyone point me in the direction of a tutorial or advice?
Thanks for your help...
AMWJ
Thanks Jack. These type of emails are such great motivation for the team.
We really appreciate it. :)
Rey...
Jack Killpatrick wrote:
I've been majorly head's-down in a jQuery-driven AIR app for the last
few weeks. I've been using jQuery almost daily since very early on (2+
yrs?). It works
Thanks so much...much cleaner. The json is generated fine
( [{"value":"","caption":"choose color"},
{"value":"bk","caption":"Black"}] ) but the drop downs are still not
populating. Here's the after call returns:
It appears that jQuery has touch the element but there are no options.
On May 2
Hi everybody,
Thanks for your help in advance ...
I have attached and aqLayer to an element like such ...
$('#prvt_days_cell').aqLayer({closeBtn:true})
.dblclick(function(){
$(this).aqLayer('Validation: If there is private kilometers,
there must be private days.');
});
Now a
On May 29, 5:32 am, David wrote:
> I need to select the lowest element containing a given string.
What does "lowest" mean? The one with the most ancestors, or the one
whose ancestors have the largest index of their siblings? e.g.
Given the document tree
I want to use a gui that's used to show a score from 1 to 10, it looks
like a slider except that it's not interactive, when the score is 1,
the slider's knot is at the left end of the scale, and right when it's
10. The color also intensifies when the score increases. Does
such gui exists? If
I've been majorly head's-down in a jQuery-driven AIR app for the last
few weeks. I've been using jQuery almost daily since very early on (2+
yrs?). It works great for my web apps and great for this AIR app, which
is _very_ heavy js/jQuery.
Great work! Thanks, kudos, etc to the jQuery and jQu
To see how to do it with Javascript:
http://vandermerwe.co.nz/?p=9
(figured it out myself)
Regards
Kris
On May 24, 6:20 pm, kris wrote:
> Im trying to implement Ajax under mod_python.
> Mod_python works fine for normal pages, but i cant get a Ajax
> response.
>
> Does somebody know of a "hell
yck handcrafting JSON is a pain, thankfully
there's great stuff out there by people who have thought of how to
help, so some advice:
grab this .NET component and drop it in your BIN directory:
http://www.codeplex.com/json (note the new version only works
with .NET 3.5, grab t
yck
Advice: grab this .NET component and drop it in your BIN directory:
http://www.codeplex.com/json (note the new version only works
with .NET 3.5, grab the older one if you're in 2.0)
then you can stay thinking like .NET and objects
Class for each item
Private Class
you have absolute elements directly embedded in other absolute elements
I would put the arrow image before the end of the body tag
note you should apply the css to the div wrapping the image. not the actual
image.
On Thu, May 28, 2009 at 4:25 PM, 破越 wrote:
>
> why my blog(bulid with j
I'm trying to figure out how to use a variable as a css property.
For example: $('.name').animate({variable : 100});
I wrote up a quick example script. My goal is to switch the animation
direction depending on the link that you click. Either have the object
animate from the left or top.
Any id
this as well
$('iframe').ready(function() {
$('body', $('iframe').contents()).html('Hello World!');
});
On Thu, May 28, 2009 at 11:20 PM, waseem sabjee wrote:
> $("#myIframe").load(function() {
> var obj = $(this)
> var element = $("div", obj);
> alert(element.text());
> });
>
> the example a
$("#myIframe").load(function() {
var obj = $(this)
var element = $("div", obj);
alert(element.text());
});
the example above should give you a starting point.
On Thu, May 28, 2009 at 5:29 PM, Joe L wrote:
>
> Hello All!
>
> I'm working on a project and within a document I have content being
>
Directorie:
introductie
offertes
>
Upload
Files
$(document).ready(function() {
/*'folder': 'documenten/' + jQuery ('select :select
Try:
...
var selector = $('#selectList');
selector.change(function() {
var directory = $('option[selected]').text(); // if you want get the option text
or
var directory = $('option[selected]').attr('id'); // if you want get the option
id
...
-Mensagem Original-
De: Y vd Bogert
> Perfect. Thanks Mike. Am I right in thinking this isn't in the docs
> @http://www.malsup.com/jquery/form/?
Yeah, it's kind of buried at the bottom of this page:
http://www.malsup.com/jquery/form/#api
I am currently loading the TreeView asynchronously and I'm trying to
set it up so an animated gif displays while a node is being expanded
and its child nodes are being created. Currently it just says
placeholder until the child nodes are done loading.
Can anyone offer some suggestions as to how I
Thanks alot james, that solved my problem. I didnt know if i made a var in
the function it wasnt public. Thanks!
2009/5/28 James
>
> In your code:
> selector.change(function() {
> var directory = selector.val();
>});
>
> 'directory' is a local var
In your code:
selector.change(function() {
var directory = selector.val();
});
'directory' is a local variable. The value of it will not be
understood outside of this function, such as in your fileUpload AJAX
code.
You should set a global variabl
That didnt solve the problem, i still get the other value.
2009/5/28 James
>
> Your 's are suppose to use the 'value' attribute:
>
> You have:
> introductie
>
> You should use:
> introductie
>
> On May 28, 5:45 am, Y vd Bogert wrote:
> > In my html select code i've got the following options:
>
Your 's are suppose to use the 'value' attribute:
You have:
introductie
You should use:
introductie
On May 28, 5:45 am, Y vd Bogert wrote:
> In my html select code i've got the following options:
>
> introductie
> offertes
>
>
> But when i select offertes it always shows my value as intr
Hi jake dimano;
I am new to JQuery, but familiar with Prototype. So just now I knew
that blockUI is the modalbox alternative in JQuery. Even Mr. Lideln
mentioned it in his first reply
http://groups.google.com/group/jquery-en/msg/52e0fd7944131b42
but I didn't figured out that, otherwise I'll not
I need to select the lowest element containing a given string.
The :contains(text) selector returns the element I want but also all
its ancestors (since they too contain the text). I haven't been able
to figure out a selector expression that returns only the lowest
element. Any help appreciated.
Hola a todos haber si hay alguien que me pudiese ayudar tengo el
plugin tablesorter y essta funcionando lo que pasa es que me duplica
las filas tengo una tabla estructurada de la forma como me indica
unodostres
1
2
3
1
2
3
lo inicializo asi
$(document).ready(function()
Hi,
I am developing a web application with full of independent widgets in
form of iframes.
I would like to avoid embeding jquery (and jQuery UI) in each iframe's
head to reduce number of requests and want to use the libs from the
parent window instead. In iframes' head I tried the following code:
why my blog(bulid with juery ) cann't works in IE but well in
Firefox
site http://pbox.blogbus.com
who can give me some advise thanks very much...
Thank you Ameen,
jQuery and its plug-in "blockUI" does this already (other
javascript/css libraries do this as well.) But I must confess, not
paying attention to their internals had me always wondering on how
they did it until you just explained it. Pretty nifty and simple, I
might add. Had I h
Hi everybody,
im new here and i would like to know if somebody used already the
block ui to validate a form...
Ive seen a bunch of form validations but always using inline elements
to show the warn... i would like to use with the Growl...
Well, you could show me some examples, i would be gratefu
Hi,
I'm trying to make my password field regex-valid, but don't know what
to add.
Here is my code :
$.validator.addMethod("integer", function(value, element) {
return !jQuery.validator.methods.required(value, element) ||
/^\d+$/
i.test(value);
}
, "Numbers only
I've also got a similar issue, using two horizontal Div's each
containing nav rows. I will eventually need three rows,
but in ff it's working great, IE is not so great. dropdown's from the
upper row are behind the lower row.
example
www.roget.com/dev/superfish.php
On May 16, 10:42 am, Ethan Mate
May be I little far, but check this link:
http://andrislinz.ch/tutorials/modalBox/index.html#
and click the only existing link in the top left "Open modalBox"
the box will be shown and click any thing out of the block will be
disabled unless you closed the block by clocking "Close modalBox"
I m
I've got an application where I need the select list (the dropdown
menu) to be created inside the parent of the input object, rather than
at the end of the body.
Briefly: we're doing an autocomplete box inside a spring-loaded "fly-
out" element. The element is shown by a hover event. When the c
Hello All!
I'm working on a project and within a document I have content being
loaded into an iframe.
When a user clicks on an item in the iframe, a pop-up div is loaded
using the facebox plugin but it's obviously contained by the iframe.
Is there any way that I can pull that element out of the
In my application, the colors are retrieved from a color picker, which are
then inserted as variables in the Gradientz's properties 'start' and 'end'.
Then a button is used to apply the 'Gradientz' on a div when it's clicked.
In Firefox, it works only once but in IE the Gradientz can be applied
Try to switch off your validation plugin...
jquery.validate.js
When blockUI is called, the cursor changes to an hour glass to
indicate something is loading. If you don't move the mouse after
everything has completed and unblockUI has been called, the cursor
remains as an hour glass!? It will only go back to normal when you
move the cursor!?
In my html select code i've got the following options:
introductie
offertes
But when i select offertes it always shows my value as introductie?
Full page code:
Bestand toevoegen
Voer alle gegevens zo zorgvuldig mogelijk in.
Directorie: fileToevoegen(); ?>
Hey Everybody!
I'm having an issue that I really hope some nice person can give me a
hand with. I am pretty new to Jquery and I'm really getting confused.
I am currently working on this page:
http://www.empirepatiocovers.com/MetroBlack-Patio-Covers1.aspx (FYI:
a lot of the page functionality d
I have 3 tabs that each loads using ajax (via href).
The problem i am having is that while a tab is loading - the user can
click on another tab (as they should).
But the tab panel rendering then gets confused - depending how long
the ajax takes or how quickly the tabs are clicked - the results can
Hello:
I'm trying to use the getJson() with asp.net page (attempting to adapt
jquery in action example to .net):
$(function(){
$('#styleDropdown')
.change(function(){
var styleValue = $(this).val();
$('#detailsDisplay').load(
'getDet
Consider a table of locations where one column is a mailing address.
Each address is at least 2 lines, a few addresses are 6 lines and
everything else falls in between. I have a request to display the
table with only one address line with the option to expand/collapse
the address cell to show the
It's not that hard to create a function that escapes special
characters in case you need it. It's the same issue as with CSS,
jQuery can't escape anything automatically because it can't guess what
you're after.
On May 27, 8:09 pm, RobG wrote:
> On May 28, 4:07 am, Karl Swedberg wrote:
>
> > On
CSS also allows character escaping:
#user\\.name { }
But guess which browser doesn't support that? In IE you'd have to use
a hex code: #user\2e name { }
On May 26, 5:21 pm, MorningZ wrote:
> So if you had:
>
>
>
> how would you apply a style to that?
>
> can't say:
>
> #user.name {
>
> }
>
>
lol
On Thu, May 28, 2009 at 7:37 PM, GaVrA wrote:
>
> http://tinyurl.com/m33969
>
> On May 28, 7:35 pm, waseem sabjee wrote:
> > Just Curious. in standard JavaScript ( not using the JQuey Library )
> > How does animate actually work ?
> > and what makes it browser computable ?
> >
> > On Thu, M
You are correct, it errors when attempting to validate the empty
select. I'll just change the default option to not be blank. Thanks!
On May 27, 5:30 pm, Jonathan wrote:
> Hmm.. threw away the [validate] in the subject. Trying again.
>
> On May 27, 4:28 pm, Jonathan wrote:
>
> > I took a look
instead of display none i use this style
.myclass {
font-size:0!important;
overflow-X:hidden!important;
overflow-Y:hidden!important;
width:0!important;
height:0!Important;
margin:0!important;
padding:0!important;
}
On Thu, May 28, 2009 at 7:42 PM, GaVrA wrote:
>
> I think it would be better pr
QUESTION: Do $.prompt(temp) and $().prompt(temp) mean the same
thing? If they do not mean the same, how are they different.
Roddy
Cool that works. Thanks!
New to this and trying to get multiple sliders on one page but cant figure
out how the script will make multiple slider variables based on this
example.
Changing the code so the page has multiple sliders.
slider here
slider here
slider here
slider here
wi
There is no ":parent" pseudo-selector that I know of. But there is a
parent() method:
$(this).parent().find('input[name^=subsequentProperty]');
If the input is a sibling of "this" you can take a shortcut:
$(this).siblings('input[name^=subsequentProperty]');
On May 28, 6:40 am, lsblsb wrote:
>
Just to add, as .not returns a jQuery object you can check it's length
(is() should be more efficient):
if ( $(this).not(":contains('Offenburg')").length )
On May 28, 9:30 am, Alaa wrote:
> Thanks,
>
> Actually I know that the complement to $('foo').is() is !$('foo').is
> (), but I wanted to tr
It doesn't match on partials unless you use special selector symbols.
The reason your element is matched is because the class "myDiv" on your div
matches the $(".myDiv") part of your selector. It is not because of the
partial match. When you do a comma delimited list as a selector, an element
$(function() {
$('div[id^="menu_"]').each(function() {
alert(this.id);
});
});
On Thu, May 28, 2009 at 10:56 AM, Dave Maharaj :: WidePixels.com <
d...@widepixels.com> wrote:
> There are going to be multiple .test on the page how can i alert(myID)
> for a
using jQGRid version 3.4.4
I have jQGrid working great with several thousand records, bottom
toolbar search, add , delete etc are working fine in all columns. I
installed the top toolbar search bar using .filtergrid and it is
sending ajax only when I hit enter key, not autocomplete style
There are going to be multiple .test on the page how can i alert(myID)
for all the elements on the page just testing it so i can see its gtting
them all?
Thanks
Dave
_
From: waseem sabjee [mailto:waseemsab...@gmail.com]
Sent: May-28-09 2:55 AM
To: jquery-en@googlegroups.com
S
I think it would be better pratice to use either css(display:none)
or .hide()
On May 28, 6:58 pm, waseem sabjee wrote:
>
> $(function() {
> /*
> Setting the time to 0 causes the element to advance to its' end state
> instantly
> */
> $("#mydiv").fadeOut(0);
>
> $("#mybutton").click(function() {
What I mean how to make the date picker combined together and
propogate date changes from one to another (like this
http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/inlineDatePickerCascade.html#
). Or to improve it so that they changes themselves each other
Many thanks
http://tinyurl.com/m33969
On May 28, 7:35 pm, waseem sabjee wrote:
> Just Curious. in standard JavaScript ( not using the JQuey Library )
> How does animate actually work ?
> and what makes it browser computable ?
>
> On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote:
>
> > no problemo :)
>
> > On M
Just Curious. in standard JavaScript ( not using the JQuey Library )
How does animate actually work ?
and what makes it browser computable ?
On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote:
>
> no problemo :)
>
> On May 28, 6:56 pm, waseem sabjee wrote:
> > Thanks :)
> >
> > On Thu, May 28, 2009 a
Hi jQuery people,
I just found out that jQuery can match on partials,.. is this correct?
and if so how do I make it match on the whole text.
i.e.
doing a $(".myDiv, #my") will actually match the above tag! is this correct?
if so how do I force it to match the whole "myID" instead of partials?
In the zip file are only 3 js files. But no examples?!
The example page is empty?
On 28 Mai, 15:03, Donny Kurnia wrote:
> heohni wrote:
> > I wasn't able to find some instructions / examples how to use this
> > plug-in?!
> > Is there any body who could help me out?
>
> http://jquery.thewikie
Hello guys,
I'm currently building a property website for a client and Ive used
jquery for all the javascript on this site.
The thing i would like to know is if anyone knows of a plugin or
method which would help me select image map thing like this property
website has :
http://www.propertyfind
no problemo :)
On May 28, 6:56 pm, waseem sabjee wrote:
> Thanks :)
>
> On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote:
>
> > You need jqueryUi for this.
>
> >http://docs.jquery.com/UI/Effects/ColorAnimations
>
> > Try importing this:
>
> > http://ui.jquery.com/latest/ui/effects.core.js";>
>
$(function() {
/*
Setting the time to 0 causes the element to advance to its' end state
instantly
*/
$("#mydiv").fadeOut(0);
$("#mybutton").click(function() {
$("#mydiv").fadeIn(500);
});
});
On Thu, May 28, 2009 at 6:02 PM, GaVrA wrote:
>
> Probably better to use css for initial hiding. Some
Thanks :)
On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote:
>
> You need jqueryUi for this.
>
> http://docs.jquery.com/UI/Effects/ColorAnimations
>
> Try importing this:
>
> http://ui.jquery.com/latest/ui/effects.core.js";>
>
> and see if your background will animate... ;)
>
> On May 28, 7:20 a
Probably better to use css for initial hiding. Something like this:
$(function(){
$('#test').fadeIn();
});
On May 28, 4:04 pm, Karl Swedberg wrote:
> On May 27, 2009, at 10:51 PM, mediumgrade wrote:
>
>
>
> > Simply question:
>
> > I want to have a DIV start by being invisible, then fade in b
Probably not documented - but supposed to be part of the public API,
otherwise the demo wouldn't cover it.
Jörn
On Thu, May 28, 2009 at 4:58 PM, fredriley wrote:
>
> Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across
> that solution eventually, but I really wanted to know *w
Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across
that solution eventually, but I really wanted to know *why* it wasn't
working, which you've now explained.
I had a look in the plugin docs for block() but couldn't see it
mentioned. Is it an 'undocumented feature', or have I n
On May 27, 2009, at 10:51 PM, mediumgrade wrote:
Simply question:
I want to have a DIV start by being invisible, then fade in but I am
not sure how to start in such a way that jQuery can make it fade in.
Any help?
Something like this?
$('div').hide().fadeIn()
(make the selector more prec
I have the following code which works fine for scraping a page
content.
$("#global").load("filePath .globalNews ul");
But after getting the content I would like to modify it. For example,
if the above code results in following HTML
News1
News2
What I really want after modification is (need t
You need jqueryUi for this.
http://docs.jquery.com/UI/Effects/ColorAnimations
Try importing this:
http://ui.jquery.com/latest/ui/effects.core.js";>
and see if your background will animate... ;)
On May 28, 7:20 am, waseem sabjee wrote:
> The one problem I am havingis that this will refus
heohni wrote:
I wasn't able to find some instructions / examples how to use this
plug-in?!
Is there any body who could help me out?
http://jquery.thewikies.com/sifr/features
You can find the example and documentation in the zip file.
--
Donny Kurnia
http://blog.abifathir.com
http://hantulab
Try this:
$("input[name^=link]").blur(function() {
if (!/^http:\/\//.test(this.value) {
this.value = "http://"; + this.value;
}
});
Jörn
On Thu, May 28, 2009 at 2:19 PM, P wrote:
>
> In my form I have a couple of text fields into which the user enters
> links.
>
>
>
>
>
> Now I want
In the quoted example, the block function is passed as the event
handler. In your example, you just reference, but don't call it. Easy
to fix:
$("#block").click(function()
{
$.tooltip.block();
aler
Perfect. Thanks Mike. Am I right in thinking this isn't in the docs @
http://www.malsup.com/jquery/form/ ?
On May 28, 1:23 pm, Mike Alsup wrote:
> > Does anyone know how or if this its possible to get the response
> > headers using the jQuery Form Plugin? I've got a success function
> > which ne
I have a form with a few required fields using the jquery Validation
plugin to validate the input values before the form is submitted. All
fields except the email field works properly, but if the value of the
email-field isnt a valid email address the error message is displayed
when the user proce
When i valid the formulary with j-query validate, it increases the width of
my imput.
How can i take out this option? Please help me, its urgent!
thanks.
I wasn't able to find some instructions / examples how to use this
plug-in?!
Is there any body who could help me out?
Thanks,
Actually I know that the complement to $('foo').is() is !$('foo').is
(), but I wanted to try the ".not"
and now it works as expected using this code:
$("#isDiv> div").not(":contains('Offenburg')")
.bind("click", function(e){
> Does anyone know how or if this its possible to get the response
> headers using the jQuery Form Plugin? I've got a success function
> which needs to get access to a response header I'm setting.
The XHR is not passed to the 'success' callback, but it is passed to
the 'complete' callback and to
In my form I have a couple of text fields into which the user enters
links.
Now I want to create a function that runs after the user has entered a
link. It should automatically add "http://"; in the beginning of the
link if the user forgot it. How do I do that?
And the complement to $('foo').is() is !$('foo').is()
Maurício
-Mensagem Original-
De: Richard D. Worth
.is() and .not() are not complementary. See:
http://docs.jquery.com/Traversing/is#expr
is( expr )Returns: Boolean
Checks the current selection against an expression
probably this:
http://docs.jquery.com/Ajax/serialize
I wanna know how can I automatically change the second input field to
get a end date after I selected the first field and get a start date.
I need keep the second input field' value same change as the first
one. Like the calendar application from booking.com or tripadvisor...
Many thanks
Hi All,
I have a form with approximately 20 text inputs in it. I want to pass
the values in these fields to $.get all at once (as though I were
submitting the form normally).
So far I have:
$.get("ajax-account.php", { action: 'amend', ARRAY HERE ? },
function(data) {
// process
Does anyone know how or if this its possible to get the response
headers using the jQuery Form Plugin? I've got a success function
which needs to get access to a response header I'm setting.
Thanks
Hi all
I'm using the Tooltip plugin (http://bassistance.de/jquery-plugins/
jquery-plugin-tooltip/) on a test page (http://www.nottingham.ac.uk/
~ntzfr/test/ajax/jquery/jquery_formtest1.html). It works fine as it
stands. I want the user to be able to toggle tooltips on/off, and a
demo on the plugi
.is() and .not() are not complementary. See:
http://docs.jquery.com/Traversing/is#expr
is( expr )Returns: Boolean
Checks the current selection against an expression and returns true, if at
least one element of the selection fits the given expression.
http://docs.jquery.com/Traversing/not#exp
oh, nice one! i always though re-calling .live bound additional code
to the original event.
learn something new every day :)
On May 28, 7:44 am, Ed Allen wrote:
> Look at the .live() method.
>
> On May 27, 11:12 pm, msk wrote:
>
> > Hi All,
> > in my scenario i have use class on an element an
1 - 100 of 127 matches
Mail list logo