[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-19 Thread Aaron Heimlich
Is it me, or is the DOM method a little bit faster than the CSS one (FF 2.0.0.6 Mac OS 10.4.10 Intel)? I would think that they'd both be the same speed. Having said that, seeing the DOM move all the blocks in unison like that is f'ing awesome! --Aaron On 8/20/07, John Resig <[EMAIL PROTECTED]> wr

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-19 Thread SeViR
;-( wops, three months ago, I needed something like that, I have to programm various lines of code plus for attaching events for the dinamic elements created. You have made me very happy :-). I love this plugin, thanks thanks thanks :-D Brandon Aaron escribió: Some of you may be familiar wi

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-19 Thread Marshall Salinger
This looks very cool indeed. No more creating functions for binding events after ajax loads. I can't wait to use this. Great work Brandon! -Marshall Brandon Aaron wrote: Some of you may be familiar with Behavior. It was a first attempt at implementing a "live DOM" experience. Behavior has b

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-19 Thread Dylan Verheul
Brandon, this looks very exciting. It may even solve some issues I'm running into in my current project. Question: "Live Query (formally Behavior)" -- don't you mean "formerly", or is the official name still "Behavior"? Dylan On 8/20/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > Some of you m

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-19 Thread John Resig
This is absolutely clutch. I've been watching this plugin progress nicely and I'm very pleased with how it's turned out. I highly recommend that everyone give it a try. --John On 8/20/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > Some of you may be familiar with Behavior. It was a first attempt

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-19 Thread John Resig
I've re-done the original demo using jQuery's step function (dunno why I didn't think of this before). Much improved: http://dev.jquery.com/~john/ticket/animatetest/ --John On 7/9/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > On 7/9/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > A big questio

[jQuery] New Plugin: Live Query (previously called Behavior)

2007-08-19 Thread Brandon Aaron
Some of you may be familiar with Behavior. It was a first attempt at implementing a "live DOM" experience. Behavior has been rewritten from the ground up with performance in mind and new features. It is now called Live Query. A couple of new features are that: * Live Queries work with attribute an

[jQuery] Re: Avoiding invalid markup

2007-08-19 Thread Kyle
It is in fact the former. I am prepending the image legally, thus if I were to take the source after the jQuery application, it would validate (rather, would throw the same error). That's a good idea to wrap it, though. It works! Thanks, Kyle On Aug 19, 10:18 am, bleen <[EMAIL PROTECTED]> wrot

[jQuery] Re: What to do when a plugin's css gets in your way

2007-08-19 Thread Karl Swedberg
Hi Mitch, Feel free to check out clueTip's home page here: http://plugins.learningjquery.com/cluetip/ I'll be moving the documentation into the template provided by Mike Alsup at some point. In the meantime, the documentation is pretty thorough, if not exactly pretty. Be sure to check out

[jQuery] Re: @import vs link

2007-08-19 Thread Mitch
Check this: @import '/public/js/jtip/css/jtip.css'; #JT{ background-color: lightcyan; } .jTip { cursor:default;} #JT_close_left { background-color: green; color: white; } #JT_close_right { background-color: green; color: yellow;} " Its from HLS, whi

[jQuery] Re: What to do when a plugin's css gets in your way

2007-08-19 Thread Mitch
Wow that is a freaking amazing solution. Not only getting the right css portion, but in showing me the way you use import then restyle on the page. Very cool. I will look into ClueTip. I like the way this coder set things up but he did not do a good job laying out how to use it, and compared to o

[jQuery] Re: - jqDnR R2 Released

2007-08-19 Thread Brice Burgess
Thanks for all the feedback regarding this plugin. It is apparent that the styling needs updating in order to prevent confusion! :) Stephen: Stephan Beal-3 wrote: > > To reproduce, simply resize the 3rd example's widget. Then move it up > a ways and resize again, and watch the space where it o

[jQuery] slideUp and Interface plugin problems?

2007-08-19 Thread Faust Gertz
I am having a problem with jQuery and the interface plugin. When I simply use jQuery 1.1.3.1 or the latest nightly, things work find. But when I simply try to add ifx.js from Interface 1.2, I get problems such as a "double bounce" on .slideUp(). I am guessing this has to with ifx.js changing .a

[jQuery] Re: @import vs link

2007-08-19 Thread seedy
The link tag is html, @import is CSS. You can use @import from within a stylesheet (has to be the first text) to include many stylesheets with a single tag Also import is not recognized by netscape 4 so it can be used to hid stylesheets from older browsers. Rey Bango-2 wrote: > > > Hi guy

[jQuery] Re: @import vs link

2007-08-19 Thread boermans
Link is the more flexible option. The media and rel attributes give you some control that @import lacks. Generally I use import now as an organisational tool - linking in separate CSS files from _within_ a central CSS file. I remember years ago using the import to hide CSS from the likes of IE3.

[jQuery] The Perfect Pop-up as a jQuery plugin?

2007-08-19 Thread boermans
I'm looking for some help with scoping variables used to store references to popped-up windows. What I have so far: http://static.fusion.com.au/ollie/jquery/popwindow2/ is a dumbed down version of: http://jquery.com/plugins/project/PopupWindow I would like to incorporate some of the accessibili

[jQuery] @import vs link

2007-08-19 Thread Rey Bango
Hi guys, In looking at another thread about jTip, I noticed that the css file was including like this: @import '/public/js/jtip/css/jtip.css'; What's the difference and/or benefit of using "@import" vs "link" to include a stylesheet? Rey...

[jQuery] Re: ASP.NET IDs

2007-08-19 Thread seedy
This should only happen on databound (templated) controls. If its a submit button or textbox ect that you have placed on the form with the designer, or dynamically with codebehind you should have no problem accessing it using $('#ServerID'). I have been doing so with much success. [EMAIL PROT

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
On 8/19/07, Mitch <[EMAIL PROTECTED]> wrote: > > I suspeced the table was changing size I actually did try ditching the table, but the "New Search" button stopped doing anything, so I left it in. It probably doesn't need to be there any more, though. but I didnt think about the scroll bar. Nei

[jQuery] Re: some javascript function on "some.html" won't work

2007-08-19 Thread Wizzud
What does "some.html" look like? You imply that it can be run in its own right, ie that it is a full document. IF you are trying to inject a full document into the DOM under the 'somediv' DIV then it would not be surprising if some functionality failed. Michael Lo wrote: > > Dear all: > > can

[jQuery] Re: What to do when a plugin's css gets in your way

2007-08-19 Thread Pops
Mitch, I came across the same issue with jTip until I studied it more. The global.css provided jTip is only an example. All you really need here are the classes beginning with "JT_" The CSS has an inline comment separating the specific JT_ classes. What I did was cut and paste these classes

[jQuery] What to do when a plugin's css gets in your way

2007-08-19 Thread Mitch
What do you guys suggest when I use someone's plugin and its css contains styles that alter my entire page. I have never had this happen until I tried jTip, which is a very cool tooltip plugin. It has a body style that changes its font to 62.5% of an em, and that ends up shrinking all my fonts.

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Mitch
Gosh that is so nice of you. I suspeced the table was changing size but I didnt think about the scroll bar. Thank you for finding that and giving me a solution. On Aug 19, 4:50 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > On 8/19/07, Mitch <[EMAIL PROTECTED]> wrote: > > > > > When I make it

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
On 8/19/07, Mitch <[EMAIL PROTECTED]> wrote: > > When I make it auto it works great, but when I click on new search the > entire > frame shifts to the left a few pixels and I am stuck on why. I got the same thing, and I don't think you're causing it. When "Search History" is collapsed, the entire

[jQuery] Re: hide table rows when we type in text box

2007-08-19 Thread Potluri
I really appreciate your help. All of the mistakes which you figured out is just a typo. I've it working but quite slow thats the reason I thought of enhancing it. Michael Geary wrote: > > > It would be helpful to have a complete example of your actual HTML and > JavaScript code. The code you

[jQuery] Re: TableSorter 2.0 pager bug

2007-08-19 Thread Chris
Re my second point (two page display containers), perhaps another approach would be to let users specify optional separate top and bottom containers. That could also remove the need for positionFixed, if one assumes a bottom container always needs to be moved. On Aug 19, 4:15 pm, Chris <[EMAIL P

[jQuery] Re: Templater

2007-08-19 Thread Pops
On Aug 19, 3:49 pm, xavier <[EMAIL PROTECTED]> wrote: > Have you seen this post ? Thats going in the same direction I think, > and I like the idea of being able to use the template for an array. > > Otherwise, a more complete, non jquery based one > http://code.google.com/p/trimpath/wiki/JavaScr

[jQuery] Re: Resending> Interface.js Exception: Access to Restricted URI denied

2007-08-19 Thread John Resig
It's because you're trying to load a file from your local hard drive - you need to have it hosted on the same domain as your page. (This is a restriction in place in all browsers.) --John On 8/19/07, G[N]Urpreet Singh <[EMAIL PROTECTED]> wrote: > Hi, > Was trying to make a horizontal accordion w

[jQuery] Re: some javascript function on "some.html" won't work

2007-08-19 Thread Matt Stith
you might be looking for $("#somediv"), $("somediv") is looking for , while $("#somediv") is looking for . Check out http://docs.jquery.com/DOM/Traversing/Selectors for some info on selectors On 8/19/07, Michael Lo <[EMAIL PROTECTED]> wrote: > > Dear all: > > can some one help > why sometime i lo

[jQuery] Re: Plugin for uploading multiple files/directories?

2007-08-19 Thread David Garcia Ortega
Hi Steve, You can try with the following plugins: http://www.malsup.com/jquery/form/ --> it allows simple upload of one file. http://www.pixeline.be/experiments/jqUploader/ --> it allows simple upload with progress bar based on flash. http://www.fyneworks.com/jquery/multiple-file-upload/ --> i

[jQuery] Re: A Simple Question ! (mouseover)

2007-08-19 Thread JDStar
On Aug 19, 11:33 am, Kixe <[EMAIL PROTECTED]> wrote: > > > $("span").html(""); > Mouse point to IMG1, all of it hover, > How can I piont to IMG1, IMG1 hover, and IMG2 , IMG2 hover only . Try like this: $(this).prev("span").html(""); -- JDStar http://www.jdstar.pl

[jQuery] TableSorter 2.0 documentation notes

2007-08-19 Thread Chris
Two easy to fix errors: The example code in Getting Started uses tableSorter() several times rather than tablesorter(). Threw me off till I compared my code with other examples. http://tablesorter.com/docs/#Getting-Started The example code for text extraction has comments left over from forced

[jQuery] Resending> Interface.js Exception: Access to Restricted URI denied

2007-08-19 Thread G[N]Urpreet Singh
Hi, Was trying to make a horizontal accordion with nice ease-in effects etc. I first made the widget separately in an HTML file (which worked fine) and then tried to embed it in my main HTML file. I got a funny exception. Error: uncaught exception: [Exception... "Access to restricted URI denied" c

[jQuery] some javascript function on "some.html" won't work

2007-08-19 Thread Michael Lo
Dear all: can some one help why sometime i load some html like $("somediv").show("slow").load("some.html"); some javascript function on "some.html" won't work but it will work when call it alone? Thanks!! Michael

[jQuery] Re: A Simple Question ! (mouseover)

2007-08-19 Thread JDStar
On Aug 19, 11:33 am, Kixe <[EMAIL PROTECTED]> wrote: > > > > > > > > $(document).ready(function() { > >$("img").mouseover(function(){ > $("span").html(""); > > }); > > $("span").mouseout(function(){ >$(this).html(""); > > }); > }); > > Mouse point to IMG

[jQuery] TableSorter 2.0 pager bug

2007-08-19 Thread Chris
Simple, I think. I tried putting the page view control at the top of my table and setting positionFixed to false, but it still jumped to the bottom when I changed page size. Either savePage() or fixPosition() should check positionFixed before moving the page number container. if fixPosition() ch

[jQuery] TableSorter 2.0 force update?

2007-08-19 Thread Chris
I'm playing with adding a filtering widget to table sorting, e.g. "hide any row where column 7 < 500." Users can keep add or remove filters dynamically. When they do, I'd like the table to update immediately, but I don't see how to do that. Calling click() on a header would change the current sort

[jQuery] Re: [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread weepy
Hey great plugin - are you likely to add a 'containment' option ? On Aug 19, 9:22 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Brice, in FF v2.0.0.6, if I resize the box (div I assume), the text > inside of the box overflows. It happens on both examples. > > I've attached a pic for you to look at

[jQuery] Re: hide table rows when we type in text box

2007-08-19 Thread Michael Geary
I just noticed one tiny bit of dead code in the function I posted: > var row = rows[i], col = row.col; Can be: > var row = rows[i]; Since the col variable is unused. -Mike

[jQuery] Re: - jqDnR R2 Released

2007-08-19 Thread Stephan Beal
> --- one bug remains; Opera 9 dragging appears to be broken for > relativeley positioned elements due to $.css('top') and $.css('left') > returning pixel position relative to page vs. parent element. This is > probably good design by them... and I hope to investigate this issue > further. Hi, Br

[jQuery] Re: hide table rows when we type in text box

2007-08-19 Thread Michael Geary
It would be helpful to have a complete example of your actual HTML and JavaScript code. The code you listed in your message is not working code: 1) The selector $("#example tbody tr td.name") will not select anything, because your 's have no class attribute. 2) $(this).html().indexOf("val") shou

[jQuery] Re: [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread David Duymelinck
Adding overfow:hidden to the element solves the problem. -- David On Aug 19, 10:22 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Brice, in FF v2.0.0.6, if I resize the box (div I assume), the text > inside of the box overflows. It happens on both examples. > > I've attached a pic for you to look at

[jQuery] Re: hide table rows when we type in text box

2007-08-19 Thread George
Yep, a few wee suggestions in no particular order... 1. Instead of .hide() and .show() try adding/removing the name of a class that makes the element hidden. (Can be faster for the css engine to do the hiding for you). Also, the toggleClass() method may be handy. 2. The spaces in your selector e

[jQuery] Re: A Simple Question ! (mouseover)

2007-08-19 Thread Ganeshji Marwaha
try this... $("img").mouseover(function(){ $(this).prev("span").html(""); }); -GTG On 8/19/07, Kixe <[EMAIL PROTECTED]> wrote: > > > > > > > > > > $(document).ready(function() { > > $("img").mouseover(function(){ > $("span").html(""); > }); > > $("span").mouseout(fun

[jQuery] Re: Templater

2007-08-19 Thread Pops
On Aug 19, 3:49 pm, xavier <[EMAIL PROTECTED]> wrote: > Have you seen this post ? Thats going in the same direction I think, > and I like the idea of being able to use the template for an array. > > http://www.dennydotnet.com/post/JavaScript-Model-Objects-JMO---An-Ide... > > Otherwise, a more co

[jQuery] Re: [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread Rey Bango
Brice, in FF v2.0.0.6, if I resize the box (div I assume), the text inside of the box overflows. It happens on both examples. I've attached a pic for you to look at. Rey... Brice Burgess wrote: I have updated the jqDnR ("jQuery Drag and Resize") plugin today. Changes include; + Multiple

[jQuery] Re: Templater

2007-08-19 Thread xavier
Have you seen this post ? Thats going in the same direction I think, and I like the idea of being able to use the template for an array. http://www.dennydotnet.com/post/JavaScript-Model-Objects-JMO---An-Idea.aspx Otherwise, a more complete, non jquery based one: http://code.google.com/p/trimpath

[jQuery] Re: [jqModal] - r11 release, improvements.

2007-08-19 Thread Benjamin Sterling
Brice, very nice work. On 8/18/07, Brice Burgess <[EMAIL PROTECTED]> wrote: > > > Ladies and Gentleman, > > A few hundred bytes were added to the jqModal plugin to aid those > struggling with z-Index container stacking issues. Namely; there's now > a shortcut** to overcome "the overlay covers ev

[jQuery] Re: [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread Benjamin Sterling
Brice, nice work. Have you tried the updated dimensions plugin to fix that bug? All in all it is looking good. On 8/19/07, Brice Burgess <[EMAIL PROTECTED]> wrote: > > > I have updated the jqDnR ("jQuery Drag and Resize") plugin today. > Changes include; > > + Multiple Independent initializati

[jQuery] Re: Totally new to this...

2007-08-19 Thread polyrhythmic
Interface's iDrag.js source, draggable clone build() fn, Line 480: > els.overflow = 'hidden'; setting the draggable's overflow to hidden may be integral to the creation, so I don't want to change the source. You can fix this with CSS, shift the whole box down perhaps with a wrapper div so that no

[jQuery] Re: Templater

2007-08-19 Thread Pops
On Aug 19, 2:09 pm, Yehuda Katz <[EMAIL PROTECTED]> wrote: > It would be trivial to change the template field syntax. In the next > revision of this thing, I'll probably just make it configurable. That is a good idea Yehuda. Offer a Begin/End tag because I think there are other server-side proc

[jQuery] [ANNOUNCE] - jqDnR R2 Released

2007-08-19 Thread Brice Burgess
I have updated the jqDnR ("jQuery Drag and Resize") plugin today. Changes include; + Multiple Independent initialization of Elements called by $.jqDrag or $.jqResize. + Detection of the dimensions plugin to alleviate Internet Explorer "jumpiness" with elements that have fixed or percenta

[jQuery] Re: [PLUGIN] Templater

2007-08-19 Thread Pops
Hi Yehuda, I grabbed your plugged and tried it out. I think I can used it with some enhancements I am going to suggest . First let me tell ya what I found. I got your simple first/last tag demo to work, but using that as a model for a test page I have already been working on for data/html bin

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Mitch
Thanks Aaron. I had to make the left margin a fixed number. When I make it auto it works great, but when I click on new search the entire frame shifts to the left a few pixels and I am stuck on why. On Aug 18, 2:23 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > On 8/18/07, Mitch <[EMAIL PROTEC

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Mitch
I look at it and I see a bunch of problems :) But I should have made it clearer that this is a "simulation" for our current visual search engine at whatbird.com The current engine is very web 1.0-ish http://identify.whatbird.com/mwg/_/0/attrs.aspx Thank you for the compliments. I have several

[jQuery] Re: Templater

2007-08-19 Thread Yehuda Katz
It would be trivial to change the template field syntax. In the next revision of this thing, I'll probably just make it configurable. -- Yehuda On Aug 19, 9:23 am, Pops <[EMAIL PROTECTED]> wrote: > On Aug 19, 2:37 am, "Yehuda Katz" <[EMAIL PROTECTED]> wrote: > > > > > Effectively, you stick thet

[jQuery] Re: ASP.NET IDs

2007-08-19 Thread [EMAIL PROTECTED]
Thank you all very much for the replies. They came in very useful! One quick question for Sam, though. You said you don't use gridviews, etc... what do you do then? Manually write the tables? On Aug 19, 1:52 pm, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Aug 18, 10:29 pm, "[EMAIL PROTECTED]

[jQuery] hide table rows when we type in text box

2007-08-19 Thread Potluri
Hi everyone, Thanks for everyone who responded for my previous queries. Here is an assignment which I feel challenging for our for our jquery guys. for table with 500 rows. I don't want to use any plugin for this. Well the task is when we type some thing in a text box it has to show only thos

[jQuery] Re: functions not working on ajax generated content

2007-08-19 Thread Michael Geary
> From: MrNase > > I have the function called init() where I use Ajax.get to > fetch the list and I have several other functions but writing > them down like: > > $(document).ready(function() { >init(); >otherfunction(); // booth need the data provided by init(); >function(); > });

[jQuery] Re: stop animation

2007-08-19 Thread Cybolic
You're absolutely correct John, it does not stop animation, thanks for clearing that up. I'm sorry for misleading you guys, I should have tested my claim more thoroughly. To try and make up for my mistake, I've packaged John's new code into a plugin and added a skip function that skips the curren

[jQuery] Re: Strange bug with slide function and input elements

2007-08-19 Thread Bernd Matzner
Hi Jeroen, the slideUp and slideDown animations are happening at the same time, because you're calling them one after another (and each takes a while to complete). One simple, yet not really elegant way of working around it is this: Exclude the paragraph in the clicked element from the list of pa

[jQuery] Re: [PLUGIN] Templater

2007-08-19 Thread Pops
On Aug 19, 2:37 am, "Yehuda Katz" <[EMAIL PROTECTED]> wrote: > > Effectively, you stick the template in a CDATA block, and it can then be > converted in the same way I described earlier. Cool shit, huh? Yup. This is basically how our server WCT (Wildcat Template)system works and I have been exp

[jQuery] functions not working on ajax generated content

2007-08-19 Thread MrNase
Hello! I have one very annoying problem. First of all, I have a list of items. Each items contains information that I want to display on the webpage using several functions. Here's an example: function getNumbers() { var numberofentries = $('#kilometer-data li').size(); } Everything works whe

[jQuery] Re: Totally new to this...

2007-08-19 Thread Shaft
Yap it works :clap: ...It's still problematic - with the hover effects. The "+" zoom-in button for some reason appears chopped onDrag... Can I fix this with CSS or is more code needed? -- View this message in context: http://www.nabble.com/Totally-new-to-this...-tf4282816s15494.html#a1222

[jQuery] Re: New jQuery.param() plugin (override) : Adds url Key=Value Parameter String Support

2007-08-19 Thread Pops
Small change: In the case "Team jQuery" decide to implement the jQuery.param() String support enhancement suggestion (Ticket #1516) in the next 1.1.4.1 update, in the interim, you might want to add a version check: (function($) { var _inherit = $.param; if ($.fn.jquery && $.fn.jquery <= "1.1

[jQuery] New jQuery.param() plugin (override) : Adds url Key=Value Parameter String Support

2007-08-19 Thread Pops
My first plugin, simple, but may provide some usefulness, and reducing some confusion with new jQuery users using AJAX calls but still thinking in non-JSON mode to pass parameters. (function($) { var _inherit = $.param; $.param = function(a) { return (a.constructor == String)? a:_inherit(a);

[jQuery] Re: Documentation Nit: .load - Incorrect Info regarding how data is sent

2007-08-19 Thread Pops
On Aug 19, 9:54 am, Pops <[EMAIL PROTECTED]> wrote: > Question: > > Can you give me a quick example of a jQuery function override? Not a > new function plugin. For example, using a simple plugin example given > to me, as use it as a model to override jQuery.param() like so: > > (function($) {

[jQuery] Re: How to check multiple checkboxes checked at a time

2007-08-19 Thread Potluri
Thanks a lot for your suggestion. Its really awesome. George-107 wrote: > > > I dare say someone can offer a better solution for your first request: > To know whether all checkboxes are checked. I'd probably try !$ > ("#id1,#id2,#id3").is(":not(:checked)") which returns true if all are > unche

[jQuery] Re: problem looping through table rows in IE

2007-08-19 Thread Potluri
Thanks Olaf, I appreciate your help. Yeah, might be my table is not valid. I'll check on it. Thats the only reason I can see now. But whats strange is I'm using table sorter plugin on the same table which uses same selector to select rows, it works on bith IE and firefox but that's not working

[jQuery] Re: Avoiding invalid markup

2007-08-19 Thread bleen
Are you saying that the markup (as it downloads form the server (including your JS above)) is not validating? Or your markup AFTER the JS has made its changes is not validating? I'm guessing its the former. If it is, try putting all your JS in an html comment tag. like this:

[jQuery] Re: Documentation Nit: .load - Incorrect Info regarding how data is sent

2007-08-19 Thread Pops
On Aug 18, 9:29 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Feel free to file a bug on it in the tracker, as an > enhancement:http://dev.jquery.com/ Done: Ticket #1516 (new enhancement) .load - add support for standard key/value pairs string as a parameter Question: Can you give me a quic

[jQuery] Re: .load path problems

2007-08-19 Thread Pops
On Aug 18, 5:32 am, shakerman <[EMAIL PROTECTED]> wrote: > > I've tried adjusting the path, i.e. > > $("#myContent").load("../mypage.php"); > $("#myContent").load("/mypage.php"); > > etc, but consistently receive the same error message. Does anyone know > how I can resolve this? Hi Shakerman, If

[jQuery] Re: Proper use of the hoverIntent plug-in?

2007-08-19 Thread Bernd Matzner
Hi Spencer, first of all let me ask you why you would want to use the hoverIntent plugin for this particular use case. After all, the Hours and Location buttons are clearly separated, so I don't see how a user could accidentally open one of the menus. At least you should lower the timeout, so tha

[jQuery] Strange bug with slide function and input elements

2007-08-19 Thread Jeroen Coumans
Hi, I've got a simple list of radio buttons that I want to turn into an accordion, have a look at . Note that without the input elements, the sliding up and down works perfectly, but with the input elements, the sliding up occurs twice. This hap

[jQuery] Re: Avoiding invalid markup

2007-08-19 Thread Stephan Beal
On Aug 19, 5:55 am, Kyle <[EMAIL PROTECTED]> wrote: > $(this).hide().parent().prepend(" > >"); > > This, obviously, is in the head tag. However, when I run it through > the validator, it is returning an error: ... > I want to avoid invalid markup; how can I get around this? In what context are yo

[jQuery] Re: ASP.NET IDs

2007-08-19 Thread Stephan Beal
On Aug 18, 10:29 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > 2) I'm also using AJAX update panel to update a gridview. Everything > is working great. However, once I update the gridview and it's > refreshed in AJAX, my jQuery no longer works, even though the code is > there. This sound

[jQuery] Re: ASP.NET IDs

2007-08-19 Thread Armand Datema
@Sam I always use this as well but maybe a trick for you ineed a bit more design freedom over every piece of repeated data In my repeater item template I always include a multiview control with several views. This way on databound of the repeater i can determine which view of the multiview to u

[jQuery] Re: problem looping through table rows in IE

2007-08-19 Thread Olaf Bosch
Potluri schrieb: Thats really surprising, the same code doesn't work for me but works for you. No I dont have IE in quirks mode. Does that make a difference? No, i tested this, works in Quirks to. See this, works this for you? http://olaf-bosch.de/bugs/jquery/potluri.html Other idea, is you

[jQuery] A Simple Question ! (mouseover)

2007-08-19 Thread Kixe
$(document).ready(function() { $("img").mouseover(function(){ $("span").html(""); }); $("span").mouseout(function(){ $(this).html(""); }); }); Mouse point to IMG1, all of it hover, How can I piont to IMG1, IMG1 hover, and IMG2 , IMG2 hover only .

[jQuery] Re: ASP.NET IDs

2007-08-19 Thread Sam Collett
I use $("[EMAIL PROTECTED]"]) to get any input elements whose id ends with MyID (i.e. whatever you set in your ASPX page). Either that, or use a class instead. As for the 2nd question, I don't use anything other than the basic controls (repeater, dropdownlist etc - DataGrid's and GridViews I don'

[jQuery] Re: AJAX and jQuery-Partail Data retrieval

2007-08-19 Thread Outlines
Extremely Sorry, Just found out there was a bug in string replace in php. Cause termination of the page Thanks

[jQuery] Re: Avoiding invalid markup

2007-08-19 Thread Wizzud
Surround inline script with commented out , eg: // Kyle-47 wrote: > > > Code should read: > > $(this).hide().parent().prepend(" ajax- loader.gif "); > > > -- View this m