[jQuery] Re: Include javafile

2007-11-01 Thread seedy
I cant see any immediate reason why that would not work, however I thought i would point out that putting your scripts at the bottom of the page is actually the recommended way of including scripts. http://developer.yahoo.com/performance/rules.html#js_bottom Muhammad Mohsin wrote: i mean

[jQuery] Re: Site Submission: ministryofsound.com

2007-10-31 Thread seedy
Makes me smile to see folks stateside listening to the tea party. John Resig wrote: That's exciting - I love the albums that Ministry of Sound puts out. I think my last.fm page captures that pretty well ;-) http://www.last.fm/user/jeresig --John On 10/31/07, Sam Sherlock [EMAIL

[jQuery] Re: submit buttons added to form don't work

2007-10-10 Thread seedy
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F robing-2 wrote: Hello Group, This is my first post to the group and I am pretty new to the jquery and I have just come up against a slight problem that I can't resolve so any

[jQuery] Re: submit buttons added to form don't work

2007-10-10 Thread seedy
I should have mentioned there is a plugin that will help with also called livequery http://brandonaaron.net/docs/livequery/ robing-2 wrote: Thanks for that link seedy, I have managed to get the new buttons working by adding the click events back on the elements after the dom changes. I

[jQuery] Re: submit buttons added to form don't work

2007-10-10 Thread seedy
haha, i totally didn't realize the faq mentioned the plugin. i should goto sleep... seedy wrote: I should have mentioned there is a plugin that will help with also called livequery http://brandonaaron.net/docs/livequery/ robing-2 wrote: Thanks for that link seedy, I have managed

[jQuery] Re: JQuery AJAX with .NET - Limitations

2007-10-04 Thread seedy
I am not sure what you are trying to do in case 1. In case 2, the cause is because iis doesn't serve ascx files. Browse to http:://website/wucPeopleList.ascx. What you see if the same thing jquery sees when you try to post to it. It is my understanding you can continue to use AJAXpro on

[jQuery] Re: Forms with asp.net

2007-10-01 Thread seedy
on it. Is this causing problem? On Sep 29, 5:15 pm, seedy [EMAIL PROTECTED] wrote: I've never used the update panel, so im not sure of all its functionality. The forms plugin should let you submit a form through an ajax request. Are you using asp.net ajax and jQuery at the same time? I think there could

[jQuery] Re: Forms with asp.net

2007-09-29 Thread seedy
I've never used the update panel, so im not sure of all its functionality. The forms plugin should let you submit a form through an ajax request. Are you using asp.net ajax and jQuery at the same time? I think there could be some problems doing that as they both make use of the $ Sharique

[jQuery] Re: Validation plugin noob

2007-09-28 Thread seedy
are your fields inside a table? I was seeing that in IE, if fields were in a table cell, the errors were being added but the cell wasn't getting larger and the errors could not be seen. Josh Nathanson-3 wrote: Hey all, Using Jorn's Validation plugin, it's not displaying the error

[jQuery] Re: Site Using jQuery - Network Solutions

2007-09-27 Thread seedy
funny, I just had a co-worker Ive been introducing to jQuery yesterday say: [jQuery is] worth including even if only for the document.ready function Glen Lipka wrote: Network Solutions just revamped their whole account manager. Guess what library they depend on? It rhymes with Mayberry.

[jQuery] Re: Replace XPath Selectors and Removed DOM Traversal Methods

2007-09-26 Thread seedy
but a lot of plugins like css selectors. having multiple selector plugins could cause a dependency nightmare. Muescha wrote: maybe but i think it would be better to extract all selectors in external selectors pligins - so i can include the selector methods i need i dont like the

[jQuery] Re: Forms with asp.net

2007-09-26 Thread seedy
If you mean the forms plugin, then yes I am using it in a .Net app Sharique Farooqui wrote: Hi, Did anybody has tried jquery forms with asp.net? -- Sharique -- View this message in context: http://www.nabble.com/Forms-with-asp.net-tf4522863s15494.html#a12907269 Sent from the

[jQuery] Re: BlockUI question

2007-09-20 Thread seedy
I've pulled this off before by not using the built in $.unblockUI() You can do: $('.blockUI').hide() or $('.blockUI').fade() Gordon-35 wrote: I have been using the blockUI extension for a while and am overall happy with it, but I do have one issue that I would like to resolve with it.

[jQuery] validation - multiple errorPlacements

2007-09-19 Thread seedy
Is it possible to use errorPlacement with the validation plugin to have a different placement for each field validated? ie. $('#testForm').validate({ rules:{ firstname:{required:true}, integer:{required:true} } }) I would like to have the error

[jQuery] Re: PERFORMANCE TIP: removeClass()

2007-09-19 Thread seedy
just curious how would that compare to $(...).attr('class',''); Jonathan Sharp-2 wrote: *Do not do:* $(...).removeClass('a').removeClass('b').removeClass('c'); *Instead do:* $(...).removeClass('a b c'); Same applys to addClass() I had 15 classes I had to remove and Firefox was a

[jQuery] Re: validation - multiple errorPlacements

2007-09-19 Thread seedy
wow I hadn't considered using an if to check the id of the element. Feeling really dumb right now. Thanks! Jörn Zaefferer wrote: seedy schrieb: Is it possible to use errorPlacement with the validation plugin to have a different placement for each field validated? ie. $('#testForm

[jQuery] Re: validation - multiple errorPlacements

2007-09-19 Thread seedy
: seedy schrieb: Is it possible to use errorPlacement with the validation plugin to have a different placement for each field validated? ie. $('#testForm').validate({ rules:{ firstname:{required:true}, integer:{required:true} } }) I would like to have

[jQuery] Re: get all checkboxes

2007-09-19 Thread seedy
if you know the 'my_' is always at the start of the id this might be a bit faster $(input[id^='my_']:checkbox) Glen Lipka wrote: Try $(input[id*='my_']:checkbox) I havent tested this, but it should work. Glen On 9/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, is it

[jQuery] Re: blockUI IE6 checkbox

2007-09-17 Thread seedy
','keypress','click'], function(i,o) { $e[b?'bind':'unbind'](o, $.blockUI.impl.handler); }); }, I don't know if this will have any other side effects, so use with care until Mike can let us know for sure. On 9/13/07, seedy [EMAIL PROTECTED] wrote: sorry

[jQuery] Re: jQuery UI praises and questions

2007-09-17 Thread seedy
Can the jQuery UI group be accessed using nabble? I prefer to use nabble and I didn't see it in the search John Resig wrote: Please PLEASE keep them separate, I don't understand why this is an issue. If you're doing stuff with jQuery UI, please post the issues in the jQuery UI list. If

[jQuery] Re: blockUI IE6 checkbox

2007-09-14 Thread seedy
) { $e[b?'bind':'unbind'](o, $.blockUI.impl.handler); }); }, I don't know if this will have any other side effects, so use with care until Mike can let us know for sure. On 9/13/07, seedy [EMAIL PROTECTED] wrote: sorry for the delay, finally got one up http://devweb1

[jQuery] Re: Downloading 1.2 minified, getting 46kb instead of 14kb ??!?

2007-09-14 Thread seedy
I also had the same thing happen. 14kb is only after it has been gzipped by your server. The version you are downloading has been minified, Its up to you to do the gzipping. lukwe wrote: When I go to the GoogleCode page for the minified version it idsplays a 46 kb file to download;

[jQuery] Re: blockUI IE6 checkbox

2007-09-13 Thread seedy
? That would be helpful for me. Thanks. Mike On 9/5/07, seedy [EMAIL PROTECTED] wrote: Setting the fade to false does not appear to be solving the issue for me. malsup wrote: seedy, Try adding this to your page: $.blockUI.defaults.fadeOut = false; I think

[jQuery] Re: Is it possible to catch keypress events to a div?

2007-09-07 Thread seedy
Ive used the shortkeys plugin for doing this http://rikrikrik.com/jquery/shortkeys/ I'm not sure if it can be used on a specific div, but Ive used it on $(document) hydra12 wrote: I'm playing with the idea for a game, and I want to use the keyboard for control. I need to catch keypress

[jQuery] Re: blockUI IE6 checkbox

2007-09-05 Thread seedy
Setting the fade to false does not appear to be solving the issue for me. malsup wrote: seedy, Try adding this to your page: $.blockUI.defaults.fadeOut = false; I think this is an issue with animation. Mike On 9/4/07, seedy [EMAIL PROTECTED] wrote: Has anyone been

[jQuery] Re: blockUI IE6 checkbox

2007-09-04 Thread seedy
Has anyone been able to reproduce this or am I just crazy ? seedy wrote: I have a few checkboxes that fire an ajax request, and use blockUI to block an element during this request. Problem is, the checkbox gets 'unchecked' whenever blockUI shows up. Its reproducible with the following

[jQuery] ajax 'error'

2007-09-04 Thread seedy
So I have jQuery talking to some asp.net 1.1 pages through $.ajax. There are some situations on the server side(session timeout, access denied) where I would like to 'cause' an error. I could write 'error' to the html and check for it in the success: function, it would just make more sense

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread seedy
I love that the half life 2 'cheatsheet' is on the desk. Rey Bango-2 wrote: Yep, I'm feeling pretty special right about now with my new JQUERY MUG COASTER SET!! wut!!! http://www.reybango.com/images/jquery/jquerymug8x6.jpg

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread seedy
Ive tried (and failed) a few times to make a graphic for a jQuery mug with a cheatsheet on it like this http://www.cafepress.com/geekcheat.11507711 vi mug . I can never fit it all on. I would pay for that at a jQuery store for sure. Glen Lipka wrote: jQuery store might be a nice way to

[jQuery] Re: ajax 'error'

2007-09-04 Thread seedy
from Response.Write seedy wrote: So I have jQuery talking to some asp.net 1.1 pages through $.ajax. There are some situations on the server side(session timeout, access denied) where I would like to 'cause' an error. I could write 'error' to the html and check for it in the success

[jQuery] blockUI IE6 checkbox

2007-08-31 Thread seedy
I have a few checkboxes that fire an ajax request, and use blockUI to block an element during this request. Problem is, the checkbox gets 'unchecked' whenever blockUI shows up. Its reproducible with the following code (appears to not just affect element blocking) html body input

[jQuery] Re: Weird behavior of CSS float! Different in IE and Firefox

2007-08-30 Thread seedy
Just as a follow up on this, it doesn't have to be overflow hidden, just any overflow attribute. Applying the overflow forces the browser to calculate the size of the div to see if it needs to show the scrollbar or not. Giuliano Marcangelo wrote: div id=parent style=width:800px;background-

[jQuery] Re: Tweaking the BlockUI Plugin

2007-08-28 Thread seedy
Post runs asynchronously, so the code does not wait for it to finish to execute the $.unblockUI(priceElement);. The set timeout won't be too helpful because you dont know how long the request will take until it has already happened. What you likely want to do is to use $.ajax rather than

[jQuery] Re: Click event not working...

2007-08-28 Thread seedy
This was a known issue for IE in 1.1.3 It has been fixed in 1.1.4 Andy Matthews-3 wrote: Does anyone have any idea why the click event on my blog isn't working in IE7? http://www.andyandjaime.com/ Clicking on the words Comments :X: - View comments or Comments :X: - Be the

[jQuery] Re: Tweaking the BlockUI Plugin

2007-08-28 Thread seedy
enchen wrote: It looks like it could be done, but I can't seem to get the page reloaded this way, which means all my server-side verifications are left unnoticed. As this is rather new to me I think I need the info fed with a teaspoon in order to get it working. So the questions are a)

[jQuery] Re: DIV clipping or autofit question

2007-08-28 Thread seedy
Is the text you are trying to display onereallylongstringthatdoesnotcontainanyspaces??? I believe Firefox has a bug that prevents it from wrapping text that does not have a space in it, I often run into that problem when trying to display URL's in firefox. Pops wrote: I have a div

[jQuery] Re: Iterating over 1000 items - optimizing jquery

2007-08-21 Thread seedy
You shouldn't need to use the .each $('td [EMAIL PROTECTED]@type=text]').after('stuff') will append to all elements that match the selector, no need to go into a loop with each. Dan Eastwell wrote: Hi, I'm doing an order form for a bookstore. The order form has over 500 items in it,

[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

[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 link 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

[jQuery] Re: changing class

2007-08-16 Thread seedy
Do you need to have a seperate css class for each list item? If they all visually look the same, I would have only 2 classes, one for the selected element, and one for all other elements. If this was the case you could do something like this: $('.unselected').click(function(){

[jQuery] Re: display Please wait while waiting for a database query.

2007-08-15 Thread seedy
there is a great plugin that will do this for you called blockUI http://www.malsup.com/jquery/block/ VS YR wrote: Hello, I have a php web application and sometimes the database query will take a while to process results. Using JQuery, is it possible to display a Please wait

[jQuery] Re: event handlers lost when adding and removing links dynamically

2007-08-14 Thread seedy
You have two options You can wrap your event binding all in its own function, and then call that function again each time new elements are added Or there is also a plugin designed to handle this for you http://jquery.com/plugins/project/behavior http://jquery.com/plugins/project/behavior

[jQuery] Re: wildcards and onclick

2007-08-13 Thread seedy
that works great thanks!! $('input:[EMAIL PROTECTED]').filter(function() { return $(this).attr('onclick').indexOf('confirm') = 0; }); I added the [EMAIL PROTECTED] to the selector to prevent the indexOf from failing in the case that there is no onclick attribute. Klaus Hartl wrote:

[jQuery] Re: Exec'ing JS In load()ed content for IE

2007-08-13 Thread seedy
have you looked into using http://docs.jquery.com/Ajax#.24.getScript.28_url.2C_callback_.29 .getScript() rather than .load ? starmonkey-2 wrote: I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html +

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread seedy
I think what you are looking for is .children() $('div[id=hover_menu]').hover_menu( $(this).children('li') ) Eridius wrote: I am trying to learn the working of making a intergrated plugin(with using jQuery.fn.plugin method). I thought a good start would be a simple hover_menu. Now my

[jQuery] Re: wildcards and onclick

2007-08-10 Thread seedy
it was interesting. Klaus Hartl wrote: seedy wrote: When I try to use a wildcard to search for characters in an onclick attribute it doesnt appear to work. I think this syntax is correct $('input:[EMAIL PROTECTED]') I know there is a bug with onclick in 1.1.3.1, is this somehow related

[jQuery] Re: JS enabled or not

2007-08-10 Thread seedy
This can be done by showing the message This site requires javascript by default. Then use jQuery to hide that message. If javascript is not enabled, your code to hide that message will not work and they will see the message. senzacionale wrote: i found this

[jQuery] wildcards and onclick

2007-08-10 Thread seedy
When I try to use a wildcard to search for characters in an onclick attribute it doesnt appear to work. I think this syntax is correct $('input:[EMAIL PROTECTED]') I know there is a bug with onclick in 1.1.3.1, is this somehow related? -- View this message in context:

[jQuery] Re: Draggable - change revert after start and before stop

2007-08-08 Thread seedy
I have done this simply by hiding the dragger when it gets dropped $('dropper').Droppable({accept:'dragger', ondrop: function(drag){ $('.dragger').css('visibility','hidden')} }); This may work out for you depending on if you need to Keep the dragger visible or not. In my case, I

[jQuery] Re: tooltip effect problem

2007-08-08 Thread seedy
It looks like the interface tooltip is automatically adding that text for you, I am not sure what the best way to trim the text for this plugin would be. You might want to look at some other tooltip plugins such as http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Tooltip or

[jQuery] Re: tooltip effect problem

2007-08-08 Thread seedy
senzacionale wrote: i have one problem with tooltip effect I want to cut url adress, becouse if it is too long then it show over the edge, over the witdh: 150px. how can i cut it? I think this a more of a problem with the browser (Im guessing you are using firefox) , than with the

[jQuery] Re: disable Effect queue

2007-08-02 Thread seedy
I think the .animate() function will help you to combine effects ie. $(element).animate({height:'toggle',opacity:'toggle'}) This should slide and fade an element at the same time. ravenel wrote: Hello, I am using effects (e.g. fadeIn Out, slideUp Down etc.) on a div triggered with a

[jQuery] Re: Two words for Jquery

2007-08-01 Thread seedy
Top Shelf ! Alexandre Plennevaux wrote: Juicy fresh ? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of spinnach Sent: mercredi 1 août 2007 13:43 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Two words for Jquery

[jQuery] Re: How to get font size in pixels?

2007-08-01 Thread seedy
Sam Collett wrote: How can I then convert the %/em value into pixels? Short Answer : You can't really convert em to pixels as em is a relative value. Long Answer: The default font size for browsers is 16px = 1em. So you could make that assumption and use 16px to calculate your pixel

[jQuery] Re: please wait-box only if delayed response

2007-07-30 Thread seedy
You could use a http://www.w3schools.com/js/js_timing.asp setTimeout to delay the box from showing. I have had to deal with the same issue of my wait box 'flashing' for quick page loads, but instead of using setTimeout, I fade the box out. The fade always takes some time, so even on the

[jQuery] Re: BlockUI does not display overlay in IE6 and IE7

2007-07-26 Thread seedy
I just had the same problem with transparency, upgrading to jQuery 1.1.3.1 seemed to clear it up. Trymbill wrote: Hi guys! I have a problem regarding BlockUI. I'm using it on a website where I have a few users registered. The idea is that a user can browse for an image, select it and

[jQuery] select by onclick text

2007-07-20 Thread seedy
I am trying to select all submit, or image buttons on my form that contain a javascript confirm function. The following seem to both return the same thing, any hints? $('form :image') -returns all image buttons, as expected $('form :[EMAIL PROTECTED] :contains(confirm)]') -also returns all

[jQuery] Re: select by onclick text

2007-07-20 Thread seedy
that doesn't seem to be working for me nor does $('form :image').find('[EMAIL PROTECTED] :contains(confirm)]') I am using jquery 1.1.3.1 if that is what you mean by latest version Glen Lipka wrote: I think with the latest version you can say $('form :[EMAIL PROTECTED]') Glen --

[jQuery] Re: select by onclick text

2007-07-20 Thread seedy
my eyes opened to a 1 line solution as well and make sure to post it if I find one. On 7/20/07, seedy [EMAIL PROTECTED] wrote: that doesn't seem to be working for me nor does $('form :image').find('[EMAIL PROTECTED] :contains(confirm)]') I am using jquery 1.1.3.1 if that is what you mean