i don't think, that there is much you can do about it.
you could change your approach and use a semi-transparent png24 as
background-image for the caption instead of setting the opacity.
this should do it.
On 20 Jun., 01:26, aronduby <[EMAIL PROTECTED]> wrote:
> Hey everyone, I've run into an is
thanks but i got it: the problem was that the fetched html contained head
and body tags.
On Thu, Jun 19, 2008 at 9:40 PM, Isaak Malik <[EMAIL PROTECTED]> wrote:
> This might be caused by a slow computer, or see if you can run the demo of
> cluetip smoothly. If so then you should modify your own c
Guys, you're both right.
We don't actually know what meppum's exact requirement is. Does the code
really have to strictly follow that exact design pattern? Or would it be
possible to use a simpler, more idiomatic approach to achieve the same
goals?
Either way, it doesn't hurt to get the original
> Hence the word "unchainable."
What do you mean ? The methods of rule objects are chainable, they
always return the rule object.
Of course a rule object doesn't have a 'rule' method that is, in fact,
the rule constructor.
Is like expecting something like this to work:
$('div').hide().$('p').sh
Now why is this not working with a href?
I have just no clue.
My guess is that the context doesn't resolve correctly when you do
"javascript:" in the href, so when you do "this.parentNode", it probably
thinks "this" is the window object, which doesn't have a parent node. Thus
it returns un
I noticed that you sent several messages about this so I'm going to reply to
you.
First, you're not able to select comment tags because it's totally useless,
however to get what you seek is simply by adding display: none; as CSS style
to the elements you want to hide and then use $('img#someID').s
Firefox 3 the stable version is already out and that's the one I'm
commenting about, however I'm only using a 1.15Ghz AMD Athlon so it's
possible that Firefox 3 is optimized for faster systems. Too bad for me..
On Thu, Jun 19, 2008 at 2:25 PM, F1LT3R <[EMAIL PROTECTED]> wrote:
>
> Remember FF3 is
#createNewAccount does not stand for a variable but for an ID attribute. To
check if the element exist you can check if it contains a value, if it does
by default or check if it contains any HTML inside the tags.
On Thu, Jun 19, 2008 at 4:10 PM, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
>
> H
Oh sorry, the code I gave you just modifies the loaded HTML and doesn't
write it back so this should work for you:
// This is to prevent two searches
var email = $('span.email');
email.html( email.html().replace('[monkeytail]', '@') );
Enjoy
On Thu, Jun 19, 2008 at 8:33 PM, IschaGast <[EMAIL P
Is anyone using web flow 2.0 with the jquery validation plugin?
It seems that some extra work needs to be done in order to properly
integrate it
For example,
I had to override the errorPlacement and add
"$(element).prev(".error").replaceWith("");;"
because the old error messages would not be re
Is anyone using web flow 2.0 with the jquery validation plugin?
It seems that some extra work needs to be done in order to properly
integrate it
For example,
I had to override the errorPlacement and add
"$(element).prev(".error").replaceWith("");;"
because the old error messages would not be remov
Hey everyone, I've run into an issue with innerFade and IE when I'm
fading an element that has the opacity set in css. More specifically,
I have a slide div, which has an img, and then a caption div. The
caption div is set to 80% opacity. Of course it works fine in FF, but
when IE runs the effect
Hence the word "unchainable."
Also, your plugin does not work on IE7.
On Jun 19, 3:27 pm, "Ariel Flesler" <[EMAIL PROTECTED]> wrote:
> Because .rule is property of jQuery, not a method of Rule objects.
>
> On 6/19/08, Brian J. Fink <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Then why doesn't this s
Great that you fixed it so soon Dan, I also hope that you can modify the
keyboard mode a bit as it could confuse the user and this can't be done with
just CSS. Perhaps you could let the autocomplete mode trigger after a
certain amount of characters have been entered or perhaps start with an
empty b
uhm, i have try with submithandler on .validate({})
but don't work great the validation
this is my code
$().ready(function() {
$("#FormRegister").validate({
submitHandler: function() { alert("Submitted!"); },
rules: {
username: {
It would be much easier if you just create a sub class with the CSS style of
#header-yellow and add it to your DIV element. And to be honest I doubt that
you can change the ID attribute
Like this:
$("#header").addClass('span-24-2');
On Thu, Jun 19, 2008 at 6:34 PM, Daniel Amselem <[EMAIL PROTECTE
Hi Zaefferer and bassistance's plugins fan,
I am look for treeview, and can't see any example for treeview edit,
but I found that here,
http://dev.jquery.com/browser/trunk/plugins/treeview/jquery.treeview.edit.js
How can do it work?
Thz..
http://royal.pingdom.com/?p=305
Matt Penner
Anyone know of a j.box?
http://particletree.com/features/lightbox-gone-wild/
I need to place a link that triggers a lightbox that holds a form.
Any ideas, people?
Thank you in advance.
-A
Hello,
How would I select all divs with a certain name?
In mootools I could use: $$('#mydelete').
That would return an array of the divs named "mydelete".
What would the JQuery equivalent be?
Thank you.
www.BrandonsCastle.com
Hi list
I'm having a problem with a simple .click function, can anyone hint me
on what I'm doing wrong?
Here's the code I'm using:
//this works
$("#aboutIs").load("/
zerocincoe.php"); //to get the first quote
//this works
$("span#reload img").hover(function () {
$(this).css({'cursor':
This might be caused by a slow computer, or see if you can run the demo of
cluetip smoothly. If so then you should modify your own code.
On Thu, Jun 19, 2008 at 5:26 PM, Alexandre Plennevaux <[EMAIL PROTECTED]>
wrote:
> hello,
>
> i'm having issues implementing a simple cluetip in Firefox 3, it b
Thanx for the fast reply!
I just now found why it was not working..
With this it works:
click
with this not (will give the freaking error):
click
Now why is this not working with a href?
I have just no clue.
On Fri, Jun 20, 2008 at 1:08 AM, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
> Your f
Your function is fine, however when you *call* the function removeItem,
you'll need to pass in two arguments -- otherwise obj will be undefined:
removeItem('myitem'); // obj is undefined
removeItem('myitem', myobject); // obj is defined
-- Josh
- Original Message -
From: "Mark" <[E
hey,
function removeItem(name, obj)
{
var answer = confirm("Are you sure you want to delete: " + name + "?")
var test = obj;
if (answer)
{
$(test.parentNode.parentNode).fadeOut("slow");
}
}
the code is simple and still not working.. the issue is that i try to
call a
Absolutely wicked! Dugg!
Joe
www.subprint.com
On Jun 19, 3:05 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> Stan,
>
>
>
> >Very nice plugin!
>
> >I second Jorn's thought on the usage of both modes. I found myself
> >slightly confused at first when I went into keyboard mode and couldn'
Hi there.
Best (or fastest) way to find out if something is in the DOM is to
check:
if ( $("#createNewAccount").length )
If .length is greater than 0 it will exist.
So your script can read:
$(document).ready(function() {
if ( $('#createNewAccount:checked').length || !$
('#createNewAccount
BTW, I know this security error is supposed to hold true for different
domains but these are on the same domain and to top it off I used a
relative link instead of even putting in the domain name so I would
have thought jQuery would use the current protocol (https OR http)
depending on which page
Hey,
I've spend the last few hours very trying to find a tooltip plugin
that can just show a hidden div when i move my mouse over a link. I've
looked at clueTip and that has nearly what i need. The clueTip sticky
example is darn close but i simply can't get it to work.
What i want is a link wher
Stan,
>Very nice plugin!
>
>I second Jorn's thought on the usage of both modes. I found myself
>slightly confused at first when I went into keyboard mode and couldn't
>click on anything. Seems to be an issue too when you click on the
>arrow, the menu is expanded and then you proceed to click on
Because .rule is property of jQuery, not a method of Rule objects.
On 6/19/08, Brian J. Fink <[EMAIL PROTECTED]> wrote:
>
>
> Then why doesn't this statement work:
>
> $.rule('p{border: 1px solid
> green}').appendTo('style').rule('a','style').append('color: red');
>
> Whereas these do?
>
> $.rule(
He is probably showing a dummy example to represent a more complex,
real situation.
So there's no sense in judging the exact code he posted.
That was the solution to his problem, that he should be able to adapt.
If you want to suggest a whole new approach to, what you suppose, he
needs.. then pr
Ferric - I believe (though I'm not totally sure) that .load uses a "get"
rather than a "post". Try doing "url.albumID" rather than "form.albumID" in
your ColdFusion code and see how that works.
-- Josh
- Original Message -
From: "ferric84" <[EMAIL PROTECTED]>
To: "jQuery (English)
I am not sure how fast the animations were in FF2, but it seems to me
that your site is pretty smooth, animation wise. I'm running FF3 on XP
w/ Core Duo 2.
Seth
On Jun 19, 6:48 am, Aldo <[EMAIL PROTECTED]> wrote:
> Hi
>
> I'm experiencing the same slow dows in animations and fades with FF3
> Fin
Am I right in thinking jQuery can not selected the
element?
shapper wrote:
> Most of my posts in this forum are not published. Why?
> Miguel
Hi Miguel,
Give it time... The jQuery list does not update supper fast.
I usually post, and check back later the next day. :)
Good luck!
Cheers,
Micky
Very nice plugin!
I second Jorn's thought on the usage of both modes. I found myself
slightly confused at first when I went into keyboard mode and couldn't
click on anything. Seems to be an issue too when you click on the
arrow, the menu is expanded and then you proceed to click on the white
ar
I'm trying to modify my custom method, as follows:
$.validator.addMethod('expiryDate', function(element){
var presentDate = new Date();
var selectedDateHash = parseInt($('#select-cardpayment-
expirymonth').val(), 10) + parseInt(($('#select-cardpayment-
expi
Then why doesn't this statement work:
$.rule('p{border: 1px solid
green}').appendTo('style').rule('a','style').append('color: red');
Whereas these do?
$.rule('p{border: 1px solid green}').appendTo('style');
$.rule('a','style').append('color: red');
On Jun 18, 4:32 pm, Ariel Flesler <[EMAIL PRO
> $('span.email').html().replace('[monkeytail]', '@');
I was also thinking it should be something like this, but this doesn't
work...
This should be possible some way I hope.
> And you probably also need:
>
> $('span.email').html().replace('[dot]', '.');
>
> On Thu, Jun 19, 2008 at 12:26 AM, Isc
There isn't really a "best" method, but if you're using GET then you should
always convert your special characters to URI safe characters using:
encodeURIComponent().
For sensitive data it's better to use POST.
On Thu, Jun 19, 2008 at 12:51 PM, Aaron <[EMAIL PROTECTED]> wrote:
> Hi, I use POST f
They are, I can see two or more subjects from you without replies. Remember
that the sender does not receive a copy from his message.
On Thu, Jun 19, 2008 at 2:37 AM, shapper <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> Most of my posts in this forum are not published. Why?
>
> Thanks,
> Miguel
>
This is exactly what I needed. Thank you to all you responded. The
information was perfect!
On Jun 18, 11:35 am, Alex <[EMAIL PROTECTED]> wrote:
> Hi Ken, luckily for us the brilliant Christian Bach created a widget
> system for Tablesorter so when you initialize your table use this
> instead $
Use a Json serialization
script.php?request="s:e:r:i:a:l:i:z:a:t:i:o:n"
only one parameter by script, then you parse the request
it's called RPC, as well as the question the answer (if needed) should
have the same shape
it's also called IPC at kernel level, you can also use url_encode...
Cheers
Well, I don't think the BlockUI plugin would be the best solution as it's
not very user-friendly and personally I would find it very annoying if a
whole web page is blocked. I rather suggest you just disable the submit
button, which PayPal also does with the last pay now button to prevent
multiple
This is swt!
On Jun 18, 10:31 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> Awhile back I blogged about a plug-in that my company was planning on
> releasing called mcDropdown (multicolumn dropdown.)
>
> Well, the plug-in was officially released
> today:http://www.givainc.com/labs/mc
Excellent. Thanks.
On Jun 18, 9:18 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote:
> jQuery (and many other libraries) adds a custom header to the HTTP request:
> X-Requested-With: XMLHttpRequest
>
> Your server-side scripts can look for this header to determine if the
> request was sent via Ajax
That's right! I'm using the following code to show a modal box on
document ready:
jQuery(document).ready(function(){
tb_show('Age verification','age_verification.php?
KeepThis=true&height=140&width=550&modal=true', null);
});
The problem is that it works on vista but not on xp or ubuntu linux
"2. When I try to apply animate-opacity to (particularly, I'm
about a 32-bit PNG with transparency) Internet Explorer (any ver.)
makes its edges ugly."
This is not related to jQuery - unfortunately, it is the way IE7 works
(breaks) when applying Alpha filters to any 32 bit PNG.
For example:
W
Hello chaps and chapesses
I have hit a bit of a snag and wondered if you could help me out.
I am using the jHelperTip plugin and am trying to apply a tooltip to
multiple info icons in one hit rather than code each one up
individually.
Here is my code
$(".tooltipContainer .tooltipTrigger").jHel
Hello.
I have this JQuery code which works absolutely fine in Firefox:
if ($("#createNewAccount").is(":checked")){
// do stuff
}
The variable 'createNewAccount' is defined as follows:
But this simply will not work in IE. What am I doing wrong please?
Having a bit of trouble with the step carousel script from the dynamic
drive site (http://www.dynamicdrive.com/dynamicindex4/
stepcarousel.htm)
Its all working fine and dandy for me, but I wanted to have the panels
automatically move after a set period of time. Id also like to save
this timeout o
Remember FF3 is RC1, so their code is probably bloated with debug
routines. I think when the final release is available things will run
much faster. ( I hope! )
On Jun 19, 12:48 pm, Aldo <[EMAIL PROTECTED]> wrote:
> Hi
>
> I'm experiencing the same slow dows in animations and fades with FF3
>
Nevermind, I found conflicting code elsewhere in my doc that was
causing this.
On Jun 18, 10:09 pm, functionasform
<[EMAIL PROTECTED]> wrote:
> I'm using the following code to plug empty input fields' "alt" attributes in
> as their values as soon as the page is ready:
>
> $(":text[alt][value=''],
On Jun 19, 4:04 am, Ariel Flesler wrote:
> On 18 jun, 17:45, meppum wrote:
> }).call(this.foo2); ---> }).call(this);
While that answer would be superficially effective (in the sense of
resulting in code that would behave as specified) it is a stupidly
inefficient approach, and so not something th
Hi!, I'm new with jQuery, and I tried to modify the id attribute of a
div without success. I need to do that because I want to change some
CSS properties of that div, and I already have the code. So, how can I
change something like this:
into this:
?
I've already tried with $("#header-blue"
Hi all. I've done some searching, but being new to this am struggling
to find what I'm after even though I'm sure the answer is simple.
I'm in at the deep end working with a webapp that uses JQuery, I
presume with various plugins for form validation. I have some code as
follows:
jQuery(document)
I've put together a simple jQuery method that puts functions 'on hold'
so that they are called at the right time and with the right
arguments. I thought that some of you may find it useful so here it
is.
In my case, I used this in creating editable areas with FCK text
editor. Instead of using tim
Hi!, I'm new with jQuery, and I tried to modify the id attribute of a div
without success. I need to do that because I want to change some CSS
properties of that div, and I already have the code. So, how can I change
something like this:
into this:
?
I've already tried with $("#header-blue
I'm using the tooltip plugin by Mr. Zaefferer and trying to get it to
appear on the hover event of a table row. It works absolutely fine in
Firefox, but of course IE won't display the tooltip.
I know the plugin is setup correctly because when I move it to another
element, it works fine in both b
I'm having the same problems with Firefox 3, the animations get stuck while
it wansn't happening for me in Firefox 2.
On Thu, Jun 19, 2008 at 1:48 PM, Aldo <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> I'm experiencing the same slow dows in animations and fades with FF3
> Final as well.
>
> Someone any i
I'm utilizing the jQuery tooltip plugin and was wondering if it were
possible to set it up to provide a tooltip on hover for each row in a
table.
Currently, I've set it up to read: and it's working fine in Firefox.
However, Internet Explorer isn't playing nice at the moment. When I
move the cla
I'm having a problem getting my server side script to see the
variables posted by a .load(). Consider this code snippet:
$('#modal_editphotos').load('/includes/members/ajax_edit_album.cfm',
{ albumID: 3 });
Given that it is coldfusion, I should be able to access the variable
"albumID" with "for
Hey Dan,
great plugin, the interface is both innovative and familiar, and works
well - as long as I use either mouse or keyboard, but not both. The
inconsistent behaviour was already mentioned by so many others in this
thread, I hope it gives you an idea how to merge both controls into
one.
If t
Graeme,
>This plugin looks really cool!
>
>I found a small issue:
>
>If you load the page for the first time (in ff3) and just click on the
>blank
>area in the dropdown (instead of the down arrow) there is no animation when
>it expands down and the hierarchy arrows don't work when you use the mou
This plugin looks really cool!
I found a small issue:
If you load the page for the first time (in ff3) and just click on the blank
area in the dropdown (instead of the down arrow) there is no animation when
it expands down and the hierarchy arrows don't work when you use the mouse.
If you then c
how to un-subscribe from this email group ??
- Original Message
From: shapper <[EMAIL PROTECTED]>
To: jQuery (English)
Sent: Thursday, 19 June, 2008 5:18:03 PM
Subject: [jQuery] Re: [validate] How to integrate validation with masking?
Hi,
I know those examples and I kind of solve
Hi,
I know those examples and I kind of solved it using:
$.validator.addMethod('sqldatetime', function (value) {
return /^([0-9]{4})-([0-1][0-9])-([0-3][0-9])\s([0-1][0-9]|[2]
[0-3]):
([0-5][0-9]):([0-5][0-9])$/.test(value);
}, 'Check your date and time. Use the format -mm-dd hh:mm:ss');
Hi,
I know those examples and I kind of solved it using:
$.validator.addMethod('sqldatetime', function (value) {
return /^([0-9]{4})-([0-1][0-9])-([0-3][0-9])\s([0-1][0-9]|[2]
[0-3]):
([0-5][0-9]):([0-5][0-9])$/.test(value);
}, 'Check your date and time. Use the format -mm-dd hh:mm:ss');
Isaak,
>I've just tested the plugin demo available at:
>http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm in Opera 9.27 and
>9.5 and it's completely compatible, which is great news!
>
>I can also confirm the following bug in Firefox 3 on Windows:
I just fixed the code to fix the mouse beh
Adam,
>Great plugin, Dan.
>
>Quick bug report: if I go down three levels (by using the first
>option) and the mouse off of the third out to the left, the 3rd level
>stays while I attempt to navigate to another option.
>
>I'm in FF3 on a Mac.
This behavior should be fixed now.
-Dan
For some reason, Firefox consistently takes about 30-40 seconds to
load an external script. IE loads the script right away. The
javascript is actually a JSP script that returns Javascript code for a
live chat script. Has anyone noticed something like this before? Why
might this delay occur only
submitHandler is just an option like rules and messages, you can put
them to the others. Looking at what your one does, just remove it - it
submits the form and nothing else, so you don't need it anyway.
Jörn
On Thu, Jun 19, 2008 at 4:06 AM, k8 <[EMAIL PROTECTED]> wrote:
>
> Hi guys :)
> I have
Here is an example using both plugins:
http://dev.jquery.com/view/trunk/plugins/validate/demo/marketo/
The second step changes the creditcard mask based on another field:
http://dev.jquery.com/view/trunk/plugins/validate/demo/marketo/step2.htm
Jörn
On Wed, Jun 18, 2008 at 7:11 PM, shapper <[EMAI
hello,
i'm having issues implementing a simple cluetip in Firefox 3, it blocks the
browser with a "script is running slowly" message.
i use the default (rel="url") ajax call. The error message points to line
503
anyone has the issue ?
thanks,
Alex
Alexandre Plennevaux
I couldn't replicate the issue you describe, so I assume the problem
is on your serverside - nothing I could fix in the validation plugin.
Jörn
On Wed, Jun 18, 2008 at 8:21 PM, cryptid <[EMAIL PROTECTED]> wrote:
>
> I am using Jörn's validation plugin to validate a form and I want to
> validate
Could you create a ticket for this? http://dev.jquery.com/newticket
Jörn
On Wed, Jun 18, 2008 at 6:04 PM, spenoir <[EMAIL PROTECTED]> wrote:
>
>
> I'm using the validation plugin for jquery on our e-commerce site. I was told
> that a large percentage of users were dropping out on our payment pag
You need to make sure that your custom method checks for optional
elements. Check those additional methods for examples:
http://dev.jquery.com/view/trunk/plugins/validate/additional-methods.js
Jörn
On Wed, Jun 18, 2008 at 2:20 PM, kapowaz <[EMAIL PROTECTED]> wrote:
>
> Alright, I've found the bu
Please post a testpage.
Jörn
On Wed, Jun 18, 2008 at 1:53 AM, Lossed <[EMAIL PROTECTED]> wrote:
>
> Hi. I tried posting this to the plugin group days ago but it's not
> showing
> and I'm not sure if it's every going to show.
>
>
> My form disappears when the focus changes between form fields. He
Your best bet are inline rules, using the class and other attributes.
All demos make heavy use of that:
http://docs.jquery.com/Plugins/Validate#Demos
As long as you keep rules inline, you can make your form as dynamic as
you like, the validation plugin handles that. Just the form itself
must be s
Here is an example for a remote JSON autocomplete:
http://dev.jquery.com/view/trunk/plugins/autocomplete/demo/json.html
The result list is limited to an unordered list, you need to embed any
further formatting into it.
Jörn
On Tue, Jun 17, 2008 at 4:26 PM, Adam <[EMAIL PROTECTED]> wrote:
>
> Hi
You can use the showErrors-option for complete control over showing errors.
All options, including success and errorPlacement, are documented
here: http://docs.jquery.com/Plugins/Validation/validate#toptions
Jörn
On Mon, Jun 16, 2008 at 8:07 PM, Dorian <[EMAIL PROTECTED]> wrote:
>
> Hi! I want
Hi,
I just solved it using:
$.validator.addMethod('sqldatetime', function (value) {
return /^([0-9]{4})-([0-1][0-9])-([0-3][0-9])\s([0-1][0-9]|[2][0-3]):
([0-5][0-9]):([0-5][0-9])$/.test(value);
}, 'Check your date and time. Use the format -mm-dd hh:mm:ss');
I am not sure if this is the wa
When I execute the following code:
--
$.getJSON('/apps/sendnote.php?a=1&id=5', function (id, status_text) { /
*func code here*/ });
--
I get the error:
--
uncaught exception: Security Error: Content at https://www.mysite.com/
may not load data from http://www.mysite.com/apps/sendnote.
Jeff -
Safari 2 has serious memory issues that are impossible to work around
- simply loading and executing too much JavaScript will cause it to
crash (as you see with the test suite). We do run the test suite
against Safari 2 but in pieces to verify that it works as intended.
Yes, we still suppo
If you position your elements using bottom instead of top, they'll
slide in the opposite direction.
On Jun 15, 2:45 pm, fallingandlaughing <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have what seems like a pretty basic question about the slideDown/
> slideUp effects, but I'm new-ish to jquery and h
I posted already once on the dev list a fix that didn't even costed a
new line (e.g. not much of increase in file size) but fixed show/hide
and related stuff in Konqueror. The feedback wasn't too good though
(e.g. zero).
http://groups.google.com/group/jquery-dev/browse_thread/thread/fe8b87deb599f
I felt the same way. All of the samples are solely based on Rails.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ed Finkler
Sent: Wednesday, June 18, 2008 3:34 PM
To: jQuery (English)
Subject: [jQuery] Re: SproutCore vs jQuery? Are there any c
On Jun 19, 7:31 pm, Lampa <[EMAIL PROTECTED]> wrote:
> Hello,
>
> i have table with few rows and last row contains in some cases another
> table. I need to find last row which not contains table.
Cycle over the table rows to find the one where:
row.getElementsByTagName('table').length > 0
Please, anyone?
Thank You,
Miguel
On Jun 18, 11:18 pm, shapper <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am using masking and client validation in a form using:
>
> Validator Plugin
> -http://bassistance.de/jquery-plugins/jquery-plugin-validation/
>
> Masked Input Plugin -http://digitalbush.com
Hello,
Most of my posts in this forum are not published. Why?
Thanks,
Miguel
Hi
I'm experiencing the same slow dows in animations and fades with FF3
Final as well.
Someone any idea?
Thanks
Aldo
On 21 Mai, 21:52, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote:
> hi friends,
>
> i just checked my jquery application using Firefox 3 Release Candidate 1 and
> whatever ani
Hello!
I discovered two problems in jQuery work with IE 7:
1. When I try to apply animate-opacity to element no effect
comes in IE 7 or 8 (but in 6 version it works!).
2. When I try to apply animate-opacity to (particularly, I'm
about a 32-bit PNG with transparency) Internet Explorer (any ver.)
On Jun 18, 2008, at 10:01 PM, Philip Brown wrote:
last entry to allow for more data to be entered. Here is the issue:
I need to refresh the div that this information is contained in. If I
use .load, the content is not editable. I have even created some
static HTML in a separate file, used .
Hello,
i have table with few rows and last row contains in some cases another
table. I need to find last row which not contains table.
Thank you for you help.
I've just tested the plugin demo available at:
http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm in Opera 9.27 and
9.5 and it's completely compatible, which is great news!
I can also confirm the following bug in Firefox 3 on Windows:
On Wed, Jun 18, 2008 at 11:18 PM, Adam <[EMAIL PROTECTED
I'm using the following code to plug empty input fields' "alt" attributes in
as their values as soon as the page is ready:
$(":text[alt][value=''],textarea[alt][value='']").each(function(){
$(this).attr("value",$(this).attr("alt"));
});
The problem is, it's not working on the input
Hello,
i have table with few rows and last row contains in some cases another
table. I need to find last row which not contains table.
Thank you for you help.
I'm working on a site and the js is crashing Safari 2.0.4, so I went
back to check the compatibility page and it says it's supported. I ran
the test page ( http://jquery.com/test/ ) in Safari 2.0.4 multiple
times and it crashed EVERY time BUT at different places.
So...my question is, is jQuery re
1 - 100 of 114 matches
Mail list logo