[jQuery] Re: Which jquery plugin is best to use to create this effect

2008-02-25 Thread Giovanni Battista Lenoci
Armand Datema ha scritto: Hi I am back into jquery since a long time due to other work http://phorsite.com/ which jquery plugin would be the best to create this effect in a jquery enabled site Armand I don't have experience about it, but I'm going to implement something similar and I

[jQuery] Re: Which jquery plugin is best to use to create this effect

2008-02-25 Thread Dave Stewart
You don't need a plugin, just the animate effect: $('page').animate({left:600}, 1000)

[jQuery] toggle disables links - unwanted

2008-02-25 Thread rayfidelity
Hi, Does anyone have a solution? the toggle part works fine it just disables all my links in the table... On Feb 24, 11:10 pm, rayfidelity [EMAIL PROTECTED] wrote: Hi, I have a problem with mytogglefunction...it disables all the links in thetr(when i click on the link it just changes the

[jQuery] $.width() not giving me the true size....

2008-02-25 Thread JohnC
I have a DIV that I'm appending n spans to. The spans are positioned absolutely, the Div relatively. Also, the spans have whitespace set to nowrap and the Div's parent overflow is set to hidden. When I call $(#divname).width() I get its absolute width ( which is its parent's width since it's set

[jQuery] Instructions starting before previous can end??

2008-02-25 Thread Ponch316
I have 5 instructions in 5 different lines, inside of a for statement: for(var i = 0; i this.subTabArr.length ; i++){ $.get(subtab.html #subDiv, function(html){ $(#left).append(html); });

[jQuery] File uploads in JQuery Forms plugin

2008-02-25 Thread TimH
The doc says that Forms targets a hidden iframe for the server response when submitting the form. The problem is, I need to see what that server response is to see if the submission was successful or not. Is there a way to get a hold of the hidden iframe so i can traverse its contents?

[jQuery] jQuery.load() problems

2008-02-25 Thread BugLaden
I have a site thats uses jQuery.load(). However the method stopped working for me correctly when the new filter logic was added. If I used jQuery v1.1.3.1 it works. Anything new than this version does not behave correctly. I am using the following code: var loc =

[jQuery] Re: Sending an AJAX call back on link click without losing it

2008-02-25 Thread AsymF
Nevermind. Apparently I had something wrong somewhere because this isn't happening anymore. On Feb 24, 4:39 pm, AsymF [EMAIL PROTECTED] wrote: I am trying to study user interface usage based on links clicked, so I attached a pingback to the click event of every link. It simply does a basic

[jQuery] Re: Which jquery plugin is best to use to create this effect

2008-02-25 Thread Sandeep
Can you give me the code with the example? Plz On Mon, Feb 25, 2008 at 3:21 PM, Dave Stewart [EMAIL PROTECTED] wrote: You don't need a plugin, just the animate effect: $('page').animate({left:600}, 1000) -- Best Regards, Sai Sandeep Thota.

[jQuery] Simple jQuery AJAX, going crazy.

2008-02-25 Thread spr
Hi, I'm trying to retrieve some XML with jQuery and process it. Following the tutorials I got this: $(function() { $.ajax({ type: GET, url: xml.php, dataType: xml, success: function(xml){ alert('success'); }, error: function(){ alert('error'); }}); }); Now, of course, this

[jQuery] Menu using jQuery based on Joel Birch's Superfish menu

2008-02-25 Thread Tim
Check out http://forrestcroce.com. It's using a three-tiered dropline menu which is a style variant of Joel Birch's Superfish menu. It's styled for the child menus to step down from the parent with space between to give a see-through effect without transparency (except in IE6, but it works

[jQuery] Simple jQuery AJAX, going crazy.

2008-02-25 Thread spr
I have this AJAX request: $(function() { $.ajax({ type: GET, url: xml.php, dataType: xml, success: function(xml){ alert('success'); }, error: function(){ alert('error'); }}); }); Firebug says it succeeds, but there aren't any

[jQuery] Probs..

2008-02-25 Thread Sandeep
Hey Folks! This is Sandeep new to this group, I want help in AJAX. IN AJAX how a frame opens by dimming the page, when we click on a Image? Can u suggest any Link r code?? Thanks -- Best Regards, Sai Sandeep Thota.

[jQuery] Re: File uploads in JQuery Forms plugin

2008-02-25 Thread Mike Alsup
Just use the normal ajax callbacks to get the server response: $('#myForm').ajaxSubmit({ success: function(responseData) { alert(responseData); } }); On Mon, Feb 25, 2008 at 1:51 AM, TimH [EMAIL PROTECTED] wrote: The doc says that Forms targets a hidden iframe for the server

[jQuery] Re: selectors: selecting every element that is not children of another div

2008-02-25 Thread Klaus Hartl
Jean-Sébastien wrote: hi, i try to select every element that is not children of another div. i tried different ways but didn't find a solution. regards Try: $('body *').filter(function() { return this.parentNode.nodeName.toLowerCase() != 'div'; }); Don't think that will perform very

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread Ariel Flesler
Try the latest jQuery (1.2.3) which removed .toggle(), and use the mouseenter/mouseleave. Maybe it works then. Ariel Flesler On Feb 25, 7:52 am, Sandeep [EMAIL PROTECTED] wrote: Thanks! On Mon, Feb 25, 2008 at 4:18 PM, rayfidelity [EMAIL PROTECTED] wrote: Hi, Does anyone have a

[jQuery] Re: Which jquery plugin is best to use to create this effect

2008-02-25 Thread Ariel Flesler
jQuery.SerialScroll: http://flesler.blogspot.com/2008/02/jqueryserialscroll.html Ariel Flesler On Feb 25, 6:53 am, Sandeep [EMAIL PROTECTED] wrote: Can you give me the code with the example? Plz On Mon, Feb 25, 2008 at 3:21 PM, Dave Stewart [EMAIL PROTECTED] wrote: You don't need a

[jQuery] Re: selectors: selecting every element that is not children of another div

2008-02-25 Thread Gordon
That would probably work but I wouldn't want to try it because I can't imagine any non-trivial page where it would complete this century. :) Then again I can't imagine why on Earth the OP would actually want to be doing this in the first place. Perhaps if you (the OP) can give us a description

[jQuery] jQuery.validate versus jQuery.yav

2008-02-25 Thread Gordon
We have a lot of forms on our site that are using a script called fValidate for client side validation. However, fValidate is not very friendly to use, hasn't been updated in years, causes incompatibilities with jQuery in IE6 and is just generally horrible. We're looking to replace it with

[jQuery] How to validate form fields using jquery

2008-02-25 Thread manish
Hi Friends, I am using CakePHP framework. With that I am using jquery for AJAX calls to my forms. It works perfect for me. Now I want to use the jquery for my form fields validations on client side. I saw a very good plugin at http://bassistance.de/jquery-plugins/jquery-plugin-validation/ .

[jQuery] Re: jQuery.validate versus jQuery.yav

2008-02-25 Thread Dave Stewart
I love validate. It takes a bit of getting used to the options, but it's great. I attach a custom attribute to any items i want validated with simple rules, then validate does the rest. A rough example: input id=email name=email type=text validation=required:true, email:true / label class=error

[jQuery] Re: selectors: selecting every element that is not children of another div

2008-02-25 Thread Ariel Flesler
'*:not(div) *' or '*:not(div) *' if they must be direct descendants This is theoretically what you need, but won't work, it will also select the head, the body.. almost everything but the children of the divs. As gordon said, you should explain the situation. Ariel Flesler On 25 feb,

[jQuery] Re: when an AJAX API documentation!!

2008-02-25 Thread daniel
This is unfair, extJS IS NOT open source, pelase just read licence carefully. http://extjs.com/license anyway try this http://jquery.bassistance.de/api-browser/ good luck. On Feb 22, 9:10 am, oscarml [EMAIL PROTECTED] wrote: HI, do you know if it planned to develop an API documentation pure

[jQuery] Select all control for tablesorter+pager?

2008-02-25 Thread drvillo
Hi all I've been using the tablesorter+pager plugin quite effectively up to now. Now, I'd like to add a gmail style select all control, i.e one that * selects the rows in the current page * shows a link saying select all the xxx items (in yyy pages), which selects all the records in all the

[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-25 Thread lvp1138
ok... seems like jframe is still using some kind of target. I'll play around with that code. Thanks! Peter :) On Feb 24, 5:54 pm, Mike Alsup [EMAIL PROTECTED] wrote: On Sun, Feb 24, 2008 at 7:04 PM, lvp1138 [EMAIL PROTECTED] wrote: Hi Mike, It doesn't have a target... take a look at

[jQuery] please, please, please, please, please, help me with this

2008-02-25 Thread Tal
Hi all, I mannaged to get the JCarousel working perfectly in IE but in Firefox Mozilla the previous and next arrow buttons dont show. Im using the static_controls.html model from the examples and the tango skin. here is my CSS followed by the HTML jquery.jcarousel.css [css] /** * This div

[jQuery] Using wrap() On Absolute Positioned Element

2008-02-25 Thread studiobl
This isn't working for me. The div has two classes: actionBox and popup. If I go into the css and remove position:absolute from class popup, wrap() works fine. Anyone know how to use wrap() on an absolutely positioned element?

[jQuery] Re: please, please, please, please, please, help me with this

2008-02-25 Thread chrismarx
a link to your page would be helpful- On Feb 25, 9:37 am, Tal [EMAIL PROTECTED] wrote: Hi all, I mannaged to get the JCarousel working perfectly in IE but in Firefox Mozilla the previous and next arrow buttons dont show. Im using the static_controls.html model from the examples and the

[jQuery] Re: Problem with form validation (works in FF, but not in IE)

2008-02-25 Thread Chris Jordan
Just to let you know, that switching from jquery.validate.pack.js to jquery.validate.js worked like a champ. I wonder if the packed version can be fixed though as I'd rather use it. On Feb 24, 4:11 pm, Chris Jordan [EMAIL PROTECTED] wrote: Thanks for the response! I'll let you know how it

[jQuery] validation plug-in and error placement -- need help

2008-02-25 Thread Chris Jordan
Hi folks, I'm in need of some assistance in figuring out how to place error messages via Jörn's form validation plug-in. I'm not sure I understand how it works. So far what appears to happen is that the plug-in itself adds a label tag with the class error and then the text of the error that I've

[jQuery] Re: validation plug-in and error placement -- need help

2008-02-25 Thread Chris Jordan
Just some clarification on what I'm trying to achieve. I'm looking at the error container example for the validation plug-in and that's darn close to what I want, but I was hoping for the error container to be more like a modal dialog. Is there a way of placing these error messages inside of a

[jQuery] Re: [treeview]

2008-02-25 Thread Thomas Hill
Well, I'm not sure if this really needs a ticket since I may just be unclear on how to do this. I've kind of got it working now, but I end up sending html, instead of json like I'd like to (I used one of the solutions posted in your blog page's comments). Here's what I am trying to accomplish, and

[jQuery] Google conversion code and ui.accordion conflict

2008-02-25 Thread Chris J. Lee
I'm having problems tracking goal conversions with google analytics. We discovered after disabling all our javascript individually we isolated our ui.accordion script as the cause for this. Anyone else have experiences with problems with the two?

[jQuery] use jquery script from parent of iframe

2008-02-25 Thread chrismarx
Quick question. There is a parent page that uses jquery and iframe in that page, which loads a page that also uses jquery. I would like the child parent to use the parent's instance of jquery. i tried: script type=text/javascriptvar jQuery, $; $ = window.parent.$; jQuery = window.parent.jQuery;

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread David McFarland
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

[jQuery] AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Josh Nathanson
Hey all, I was working with the new jQuery 1.2.3 over the weekend and noticed that it broke my ajaxCFC installation. I had to roll back to jQuery 1.2.1 before ajaxCFC would work again. Has anyone else noticed this? If so has anyone done a port of ajaxCFC to jQ 1.2.2 and above? It looks

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread Ariel Flesler
Wait.. this is a mess :) all my fault. I got confused, I was thinking about 'hover' not 'toggle'. @David I checked now and hover and toggle stayed, only that hover uses the mouse events internally for backwards compatibility. Now, .toggle IS internally calling e.preventDefault(), I really don't

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread Ariel Flesler
Argh, I hate myself when I type fast. I really don't know what -- I really don't know WHY rayfielity -- rayfidelity (sorry) On 25 feb, 14:44, Ariel Flesler [EMAIL PROTECTED] wrote: Wait.. this is a mess :) all my fault. I got confused, I was thinking about 'hover' not 'toggle'. @David I

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread [EMAIL PROTECTED]
This works. I'm using v 1.2.2. // click on/off $('#panelOff, #hidestyles').bind('click',function(){ $('#pagestyles').toggle(); Cherry. David McFarland wrote: On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote: Try the latest jQuery (1.2.3) which removed .toggle()

[jQuery] Re: Validating not happening in IE6 no error removal on keyup

2008-02-25 Thread scud
Jorn, I tried looking at that and I guess the thing I'm not understanding is where do I specify the option:onkeyup to make sure that that's happening? I thought it was unnecessary because I thought I remembered reading that the validation was lazy until they submitted something and then the

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread [EMAIL PROTECTED]
This works. I'm using v 1.2.2. // click on/off $('#panelOff, #hidestyles').bind('click',function(){ $('#pagestyles').toggle(); Cherry. David McFarland wrote: On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote: Try the latest jQuery (1.2.3) which removed .toggle()

[jQuery] Re: tr background toggle

2008-02-25 Thread Jeffrey Kretz
In my experience, CSS on TRs is an unreliable prospect. Try setting the CSS for the TDs instead. You could do this by having a CSS property like this: tr.hover td { background-color:#FEFFAF; } And then code it like this: $(.table_data tr).toggle( function(){

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Rey Bango
Hi Josh, Yeah neither Rob nor myself have had time to focus on AjaxCFC due to time constraints. If you have the error, I can take a peak. Rey Josh Nathanson wrote: Hey all, I was working with the new jQuery 1.2.3 over the weekend and noticed that it broke my ajaxCFC installation. I had

[jQuery] Re: How to validate form fields using jquery

2008-02-25 Thread Jörn Zaefferer
manish schrieb: Hi Friends, I am using CakePHP framework. With that I am using jquery for AJAX calls to my forms. It works perfect for me. Now I want to use the jquery for my form fields validations on client side. I saw a very good plugin at

[jQuery] Re: jQuery.validate versus jQuery.yav

2008-02-25 Thread Jörn Zaefferer
Gordon schrieb: We have a lot of forms on our site that are using a script called fValidate for client side validation. However, fValidate is not very friendly to use, hasn't been updated in years, causes incompatibilities with jQuery in IE6 and is just generally horrible. We're looking to

[jQuery] Re: validation plug-in and error placement -- need help

2008-02-25 Thread Jörn Zaefferer
Chris Jordan schrieb: Just some clarification on what I'm trying to achieve. I'm looking at the error container example for the validation plug-in and that's darn close to what I want, but I was hoping for the error container to be more like a modal dialog. Is there a way of placing these error

[jQuery] jquery private variable

2008-02-25 Thread philijkl
I create a simple plugins and bind it to two div in my pages. .. jQuery.jUpload = function() { var test; return { startUpload: function() { alert(test);

[jQuery] Re: textArea select text.

2008-02-25 Thread RazoR
how to edit textarea value in JQ without plugins?

[jQuery] Re: Books

2008-02-25 Thread coughlinsmyalias
Thank you very much! I will go check those two books out! Ryan On Feb 24, 10:18 pm, Richard D. Worth [EMAIL PROTECTED] wrote: I would strongly recommend these two: Pro JavaScript Techniques John Resighttp://www.amazon.com/Pro-JavaScript-Techniques-John-Resig/dp/1590597273 Learning

[jQuery] document.onmousedown=selectmouse vs $(document).mousedown(function(){})

2008-02-25 Thread jquertil
this is interesting: I have a standard function in JS, and call it like so: document.onmousedown=trackmouse function trackmouse(){...} works very nicely. I tired to make it happen jQuery-style, but no dice. $(document).mousedown(function(){}) Of course my function is inside an extender

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Josh Nathanson
Rey, I'll slap together a test page and send another email when it's ready. -- Josh - Original Message - From: Rey Bango [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, February 25, 2008 10:57 AM Subject: [jQuery] Re: AjaxCFC and jQuery 1.2.2 and above Hi Josh,

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Josh Nathanson
OK, turns out it wasn't ajaxCFC after all. I had an older version of livequery that I hadn't updated to the latest version that was conflicting with the newer versions of jQuery. I've gotten the latest version of livequery and now all is good. Sorry about the false alarm! -- Josh -

[jQuery] Re: validation plug-in and error placement -- need help

2008-02-25 Thread Chris Jordan
Jörn Zaefferer wrote: Chris Jordan schrieb: Just some clarification on what I'm trying to achieve. I'm looking at the error container example for the validation plug-in and that's darn close to what I want, but I was hoping for the error container to be more like a modal dialog. Is there a

[jQuery] Re: textArea select text.

2008-02-25 Thread Karl Rudd
Define edit? You can assign the value just like any other text field. i.e. $('textarea').val('text') Karl Rudd On Tue, Feb 26, 2008 at 5:56 AM, RazoR [EMAIL PROTECTED] wrote: how to edit textarea value in JQ without plugins?

[jQuery] [tabs] Using jQuery inside tabs

2008-02-25 Thread Seth - TA
I have created a page that calls $tabs.tabs(add, this.href, title); Where this.href is the link I am opening as a remote tab. This works and the tab is added with the correct page showing, however, any and all jQuery which is in the remote page called does not work. I noticed by looking at the

[jQuery] load events and timing

2008-02-25 Thread Jay
Good afternoon all, If I attach an event to iframe page load, something like this: $( '#Content', ReplyFrameDocument ).one( 'load', function() { alert( 'content loaded' ); }); If the content is already loaded will I still get an event

[jQuery] Re: clueTip Flicks in FF

2008-02-25 Thread fshuja
please hlep me out. thx

[jQuery] Tabs - Rempote tabs with jQuery not working

2008-02-25 Thread Seth McGuinness
I have a page creating new remote tabs on the fly, however, the remote tabs which have jQuery it them do not work. Is it possible to get the jQuery in them to work? If not, is there a solution that allows for tabs and for jQuery to be used in the tabs. Thanks. Seth

[jQuery] A jQuery and php os without Mysql

2008-02-25 Thread [EMAIL PROTECTED]
Hello and sorry for my english. In first, all my thanks to John Resig and all the people on his team ! I'm working since a few years on a php motor who's abble to work only with files, folders and logs. It's the same things as a computer. With that, i'm abble to make some web page without Mysql.

[jQuery] Re: Tabs - Rempote tabs with jQuery not working

2008-02-25 Thread Klaus Hartl
On Feb 25, 9:50 pm, Seth McGuinness [EMAIL PROTECTED] wrote: I have a page creating new remote tabs on the fly, however, the remote tabs which have jQuery it them do not work. Is it possible to get the jQuery in them to work? If not, is there a solution that allows for tabs and for jQuery

[jQuery] Re: clueTip Flicks in FF

2008-02-25 Thread Karl Swedberg
I already replied to the same issue in the other thread: It looks like part of the tooltip is hitting the mouse, and that causes a mouseout from the invoking element, which closes the tooltip; when the tooltip then closes, the mouse is once again over the invoking element. This continues.

[jQuery] Re: Using jQuery inside tabs

2008-02-25 Thread Klaus Hartl
On Feb 25, 8:48 pm, Seth - TA [EMAIL PROTECTED] wrote: I have created a page that calls $tabs.tabs(add, this.href, title); Where this.href is the link I am opening as a remote tab. This works and the tab is added with the correct page showing, however, any and all jQuery which is in the

[jQuery] Re: Can't Add a checked=checked Attribute to Input tag

2008-02-25 Thread Joe
Rob, Thank you very much for the detailed response. Very insightful indeed. Cheers. Joe On Feb 23, 1:28 am, RobG [EMAIL PROTECTED] wrote: On Feb 23, 4:55 am, Joe [EMAIL PROTECTED] wrote: Yes I did. Strangely enough, what I initially wrote worked in a simply HTML page without much

[jQuery] Re: jcarousel not loading fully in safair

2008-02-25 Thread FishNYC
Oh man. thanks dude. I wasted the whole stinking day trying to debug that. THANK YOU THANK YOU

[jQuery] Re: Using jQuery inside tabs

2008-02-25 Thread Klaus Hartl
On Feb 25, 11:41 pm, Seth - TA [EMAIL PROTECTED] wrote: So if I understand what you are saying, any jQuery which I want to use in the tabbed content must be in the parent page (the page which is creating the tabs)?  I have tried to add the appropriate jQuery statements to the parent page and

[jQuery] Re: Using jQuery inside tabs

2008-02-25 Thread Seth - TA
So if I understand what you are saying, any jQuery which I want to use in the tabbed content must be in the parent page (the page which is creating the tabs)? I have tried to add the appropriate jQuery statements to the parent page and have still had no success. Could you provide me with some

[jQuery] Re: document.onmousedown=selectmouse vs $(document).mousedown(function(){})

2008-02-25 Thread JohnC
jquertil I put my hand up to being no jQUery expert - I'm just starting out - but shouldn't it be $(body).click( function() {.. ? Regards John

[jQuery] Animating color changes using RGB values

2008-02-25 Thread AsymF
I know jQuery is setup to do animations based on math performed on numerical values, so if I supplied it with a CSS rgb() range for it to animate from one color to the next (say red to blue) could it do the color transition?

[jQuery] Re: document.onmousedown=selectmouse vs $(document).mousedown(function(){})

2008-02-25 Thread Klaus Hartl
On Feb 25, 7:33 pm, jquertil [EMAIL PROTECTED] wrote: this is interesting: I have a standard function in JS, and call it like so: document.onmousedown=trackmouse function trackmouse(){...} works very nicely. I tired to make it happen jQuery-style, but no dice.

[jQuery] Re: Problem with form validation (works in FF, but not in IE)

2008-02-25 Thread Q-Zma
I already seen same problem with packed version in the past, Joern promised to check packed version everytime, but looks like he forgot that time :) On 25 фев, 17:55, Chris Jordan [EMAIL PROTECTED] wrote: Just to let you know, that switching from jquery.validate.pack.js to jquery.validate.js

[jQuery] Re: Simple jQuery AJAX, going crazy.

2008-02-25 Thread Q-Zma
try to use POST instead of GET On 25 фев, 12:51, spr [EMAIL PROTECTED] wrote: I have this AJAX request:         $(function() {           $.ajax({ type: GET, url: xml.php, dataType: xml, success: function(xml){             alert('success');           }, error: function(){            

[jQuery] jqModal - Doctypes

2008-02-25 Thread Adrian_L
Hi, everyone, first time sending a message over here :) Im having troubles with the overlay on IE7. Using this doctype: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN Works great on FF, but on IE7 i get that the overlay is somehow missed or under all the other elements, it doesnt

[jQuery] Attribute Selector

2008-02-25 Thread Smith, Allex
Correct me if I am wrong... This selector should: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]somedomain.com :[EMAIL PROTECTED]somedomain.com] only select links that start with mailto:; and contain somedomain.com Correct? Allex

[jQuery] Re: Attribute Selector

2008-02-25 Thread Erik Beeson
You have some oddly mismatched quotes, but otherwise, yes, that works. Here's a test done in firebug on jquery.com: $('[EMAIL PROTECTED]:][href*=book]').each(function() { console.log(this.href );}); http://www.packtpub.com/jQuery/book/mid/1004077zztq0

[jQuery] Re: document.onmousedown=selectmouse vs $(document).mousedown(function(){})

2008-02-25 Thread jquertil
klaus, hmmm well, basically I want to ultimately be able to do this: $('.trackerdiv').trackit(); right now, my trackmouse function looks at the srcEvent and figures out which div the mouse was clicked on. that works fine. if(srcEvent.className== ' trackerdiv') i want to pass

[jQuery] Re: Menu using jQuery based on Joel Birch's Superfish menu

2008-02-25 Thread Joel Birch
Hi Tim, Thanks very much for the link. It's always interesting to see what the variations people come up with. Glad you are able to make good use of the plugin, Tim. Joel BIrch.

[jQuery] Re: Probs..

2008-02-25 Thread Sandeep
thanx! On Tue, Feb 26, 2008 at 3:48 AM, the_woodsman [EMAIL PROTECTED] wrote: Hi, I think what you're after is generally referred to as lightbox. A JQ implementation: http://leandrovieira.com/projects/jquery/lightbox/ Enjoy! On Feb 25, 8:50 am, Sandeep [EMAIL PROTECTED] wrote: Hey

[jQuery] Ajax Post URL

2008-02-25 Thread MikeP
Hello. I'm using an Ajax Post. It works fine when I use the path in the url... url: controllers/processajax.cfm, However, If I want to use a url string like: url: index.cfm?Action=processajax, Then I get the following error: unterminated regular expression literal It blows up in what

[jQuery] Re: Ajax Post URL

2008-02-25 Thread Jake McGraw
Try: $.post(index.cfm, {Action:processajax}, function(){/* Success callback */}); On Mon, Feb 25, 2008 at 10:23 PM, MikeP [EMAIL PROTECTED] wrote: Hello. I'm using an Ajax Post. It works fine when I use the path in the url... url: controllers/processajax.cfm, However, If I want to