On May 20, 2008, at 12:47 PM, Ariel Flesler wrote:
So.. Have you tried using jQuery 1.2.4 ?
jQuery.attr works completely different now.
It does? Do you mean there are API changes?
thanks
--dave
On Apr 17, 2008, at 1:08 PM, Richard W wrote:
>
> Hi There
> I was wondering if anyone else has noticed or experience the weird
> effect that fade has on the screen when viewed in FF on a mac
> (leopard). In safari and opera, even IE run under parallels, there is
> no screen flicker.
> When the f
On Apr 17, 2008, at 2:07 PM, dustinl wrote:
>
> I get this error in the Firefox error console: "$ is not defined" and
> it points me to line
>
> $(document).ready( function() {
>
> I have the most up to date jQuery and I am pointing it to the correct
> location but I can't figure out why I get th
On Apr 16, 2008, at 5:25 PM, [EMAIL PROTECTED] wrote:
>
> Hello there :)
>
> I've got a bit stuck. I suspect this is a job for Livequery, but can't
> understand how to use it (sorry, Ariel).
>
> With this:
> $( '.showlayer' ).click( function () {
> $( '#div1 ).fadeIn( 750 );
>
> I'm trying
On Apr 14, 2008, at 4:13 AM, Iminay wrote:
>
> sample code:
>
> $(document).ready(function(){
> $("#menu li").click(function(){
> $(this).fadeTo(1000,0).html("changed").fadeTo(1000,1);
> });
> });
$(document).ready(function(){
$("
On Mar 23, 2008, at 10:10 AM, [EMAIL PROTECTED] wrote:
>
> I need to know how to create an onload for all occasions. How do I
> make an onload for jquery and other scripts on my site. Not a jscript
> coder so take it easy for me.
Check this out: http://jquery.open2space.com/node/9
--dave
On Mar 3, 2008, at 5:42 AM, otherjohn wrote:
> Where can I
> find specific functions like this. I searched the api and couldn't
> find anything like it.
http://docs.jquery.com/Traversing
On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote:
>
> Try the latest jQuery (1.2.3) which removed .toggle()
toggle() was removed? i'm using jquery 1.2.3 and it seems to be
working for me. This isn't mentioned in the release notes either:
http://docs.jquery.com/Release:jQuery_1.2.3
--dave
On Jan 11, 2008, at 9:18 AM, jeff w wrote:
>
> yeah,
>
> I am having the same issue.
>
> Anyone have a solution??
check the discussion archives. there are two solutions posted:
http://groups.google.com/group/jquery-en/browse_thread/thread/270e0659ae6c72ac/5208edce49f105c8?lnk=gst&q=toggle()+ch
>
>
>
> $(document).ready(function(){
> $("#precheck").toggle(
> function () {
>$(".preregbox").show('slow');
> },
> function () {
>$(".preregbox").hide('slow');
> }
> );
> });
I've had that problem too and switched to this structure:
$('input#precheck').click(f
On Jan 8, 2008, at 7:07 AM, justinteractive wrote:
>
> Hi folks,
>
> I'm using remove() to remove a list, then re-creating a list using the
> same id. Remove does not appear to be actually removing the instance.
>
> If I check for the element, it returns true, but if I try to work with
> it noth
>
>
> <>
>$('table tr').hover(
>function() {$(this).addClass('hover');},
>function() {$(this).removeClass('hover');
>});
> <>
>
>
> This is my CSS:
>
> <-
>>
>
> Don't forget that every row has rowIndex and sectionRowIndex
> properties and every cell a cellIndex property. These are very much
> faster than CSS-style selectors, e.g.:
>
>$($('#tableID').rows[x].cells[y]).text();
Hi Rob,
I've never seen that syntax before, and I can't get it to w
On Dec 17, 2007, at 11:56 AM, LeonL wrote:
>
>
> Hi everyone,
>
> I have an event that is not being listened and I can't figure out why.
>
> The thing is that everything is working fine while all my html code is
> static, but as soon as I modified it with some data pulled from the
> db, the
>
>
>> Has anyone developed a sound plugin for jQuery like the one Prototype
>> has?
>>
>>
> Give this a try: http://dev.jquery.com/view/trunk/plugins/sound/
>
> A port of the scriptacolous sound.js library, based on jQuery and
> some slight API changes. Works for me on IE6, FF2, Safari 3 and
>
>
>
>
> $(document).ready(function() {
> $("#main #welcome a").hover(
> function() {
> var href = $(this).attr('href');
> var a1 = href.split("DURL=");
> if (a1 != href) {
> window.status = a1[1];
> }
> }
> );
>
> Works:
>
> $(".flag").hide();
>
> Doesn't work (wont alert):
>
> $(".flag").click(function (){
> alert("hello");
> });
>
> WORKS:
> $(".flag").click(function (){
> alert("hello");
> }).click();
>
> It seems like the browser just doesn't see the click event! Weird..
What does the HTML look lik
17 matches
Mail list logo