[jQuery] make sure animate stays on screen (top of animate anyway).

2009-03-16 Thread pedalpete
I started working on a mobile app for my site, and it's working pretty good so far, but I have a problem with the animations. What i've got (you can see it at http://zifimusic.com/v2/mobile), the page gets a list of concerts which is scrollable. clicking a result will slide the list over and show

[jQuery] Re: Annoying IE Flash

2009-03-16 Thread jhm
> Try giving this a > read:http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-... Great post, thank you!

[jQuery] Showing Ajax response when not empty

2009-03-16 Thread Brendan
I'm not sure where to begin asking for help on this one, so I'll just explain what I'm trying to do. What I want to do is show a notification on the page when another user logs in. Say I am User A, and User B logs in, I want to see a notification that User B has logged in. Right now I have a so

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
doesnt seem to work get a recursion error thanks! On Mar 16, 7:26 pm, ricardobeat wrote: > jQuery.fn.showLoop = function(i){ >   var i = i || 0, >     self = this; >   $( this[i] ).show(600, function(){ >        self.showLoop(++i); >   }); > > }; > > $('.type').showLoop(); > > On Mar 16, 7:27 pm

[jQuery] Re: loop through div

2009-03-16 Thread Karl Swedberg
Dave Methvin showed someone else another way to do this back in December. Here is a slightly modified version of his approach: $(document).ready(function() { var $divs = $('div').hide(), div = 0; (function(){ $divs.eq(div++).show('slow', arguments.callee); })(); }); --Karl

[jQuery] Re: Annoying IE Flash

2009-03-16 Thread mkmanning
I usually put on small bit of js in the head: document.documentElement.className = "js"; Then hide elements you like in your CSS: .js element_to_hide {display: none;} That way elements are only hidden if the user has JavaScript enabled. On Mar 16, 6:47 pm, James wrote: > Try giving t

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-16 Thread Tin
Guys, I've finally gotten around to implementing a sample Model to drive the SlickGrid. As it stands right now, it provides a filtered/sorted view of the data as well as a mechanism to resort or update the filters. Whenever the data in the view changes, the model fires onRowCountChanged and/or o

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
im getting too much recursion in firebug, any thought? On Mar 16, 7:26 pm, ricardobeat wrote: > jQuery.fn.showLoop = function(i){ >   var i = i || 0, >     self = this; >   $( this[i] ).show(600, function(){ >        self.showLoop(++i); >   }); > > }; > > $('.type').showLoop(); > > On Mar 16, 7:

[jQuery] Re: Show/Hide element

2009-03-16 Thread James
Adding to Mat's solution to work for many fieldsets: $("legend").click(function() { $(this).next("ul").toggle(); }); On Mar 16, 4:05 pm, Mat Schaffer wrote: > Tried something like this? > > $("legend").click(function() { $("fieldset ul").toggle(); }); > > On Mar 15, 2009, at 10:40 AM, shapper

[jQuery] Re: Show/Hide element

2009-03-16 Thread Mat Schaffer
Tried something like this? $("legend").click(function() { $("fieldset ul").toggle(); }); On Mar 15, 2009, at 10:40 AM, shapper wrote: Hello, I have a list of fieldsets and each one has a legend. I am thinking in having something like: Personal Data first element second element

[jQuery] Re: Annoying IE Flash

2009-03-16 Thread James
Try giving this a read: http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content On Mar 16, 3:33 pm, jhm wrote: > I get an annoying flash in IE when I go to a page. I'm wondering if > there is a good way around it. > > It's my 2nd & 3rd

[jQuery] Jörn's Tooltip plugin

2009-03-16 Thread Andy Matthews
Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from another event or if it's only when hovering over an element? For example, I could trigger the tooltip on element a FROM element b (or via trigger()). I'd like to use it as sort of a poor man's modal window message.

[jQuery] Re: partial step form validate

2009-03-16 Thread Led
See it here http://d61628.tinf28.tuganet.info/132/1.htm On 17 Mar, 01:30, Stephen Sadowski wrote: > Hey, > > I'd go with $('#form input,select,radio,textarea') to select all > standard form elements, but the validation depends on how you're doing > validation. > > -S > > > > On Mon, 2009-03-16

[jQuery] Annoying IE Flash

2009-03-16 Thread jhm
I get an annoying flash in IE when I go to a page. I'm wondering if there is a good way around it. It's my 2nd & 3rd level navigation. I have a collapsing menu that is intended to only show the 3rd level nav once its corresponding 2nd level is selected. In case javascript is turned off, I have th

[jQuery] Re: partial step form validate

2009-03-16 Thread Stephen Sadowski
Hey, I'd go with $('#form input,select,radio,textarea') to select all standard form elements, but the validation depends on how you're doing validation. -S On Mon, 2009-03-16 at 18:18 -0700, led wrote: > Hi need to validate just the form elements in a step. how do i > reference the form element

[jQuery] Re: questions about binding events

2009-03-16 Thread James
1) Are you sure that $("#dmid img", msg).each() is actually looping through all the elements you intended to loop through? Instead of doing a bind, try $(this).hide() to debug it. If it's not hiding the elements, it's not looping correctly. If it does hide, your event handler is not working correc

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
thanks guys! On Mar 16, 7:26 pm, ricardobeat wrote: > jQuery.fn.showLoop = function(i){ >   var i = i || 0, >     self = this; >   $( this[i] ).show(600, function(){ >        self.showLoop(++i); >   }); > > }; > > $('.type').showLoop(); > > On Mar 16, 7:27 pm, Tom  Shafer wrote: > > > how can i

[jQuery] Re: jquery-corner plugin not working anymore?

2009-03-16 Thread Mike Alsup
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> > >   >     >     >     >     //     jQuery(document).ready(function(){ >       alert('doc ready!'); >       jQuery("#home_start_register_button").corner('bevel'); >     }); >     //]]> >     >   >   > >   >     >

[jQuery] partial step form validate

2009-03-16 Thread led
Hi need to validate just the form elements in a step. how do i reference the form elements in a div. ex: $("#form").validate().element("elements in the div") thanks in advanve

[jQuery] Re: dropShadow intermittent Height/Width issue

2009-03-16 Thread Karl Swedberg
A few things you could try: 1. explicitly set the width of the table rather than let the width of the items within it to determine its width. 2. make sure the stylesheets are being loaded before the scripts. 3. apply the drop shadow on $(window).load() rather than $ (document).ready() --K

[jQuery] nyromodal with javascript in ajax response

2009-03-16 Thread pedalpete
I've got what should be a fairly simple implementation of the nyromodal (like thickbox). I use the modal multiple times on my page, and call it by just using nyromodal as the class on the a-tag that makes the request. The problem I'm having is that on one page I'm trying to put my javascript wid

[jQuery] Re: JavaScript Loading Question

2009-03-16 Thread Karl Swedberg
This is the best way I've found to initially hide content with JavaScript without having the flash of unstyled content. http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content --Karl Karl Swedberg www.englishrules.com ww

[jQuery] Re: jquery-corner plugin not working anymore?

2009-03-16 Thread j0llyr0g3r
Hmm, but then my chances are good of breaking the functionality of my other jquery-plugins, right? What a mess.. I also tried nifty-corners -> absolutely horrible, not to mention the fact that it is uber-intrusive (like f**king up non-related CSS and so on). Any other good plugins you coul

[jQuery] Re: Does jquery.cycle.all.js work with jquery 1.2.1?

2009-03-16 Thread Mike Alsup
> do i need to update the jquery.cycle.all.js file? > > thanks alot! > > dan You say you downloaded a newer version of jQuery, but v1.2.1 is actually quite old. I'd highly recommend upgrading to v1.3.2 which is the latest. http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js If you decide

[jQuery] Re: jquery validate

2009-03-16 Thread James
Use the Validation plug-in: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ On Mar 16, 12:56 pm, Egipicio wrote: > hello > > I want to validate an input field so he accepts numeric value greater > than 20 .. > > person type number is less than 20 open an alert is to do this with >

[jQuery] Re: Form Plugin data return type

2009-03-16 Thread Mike Alsup
> Hello, I'm trying to submit a form via Ajax and receive a JSON return > type > > http://imgur.com/2KZ1.png > > As you can see in the screen shot, I call the method ajaxForm, and on > success of the ajax call, processJson is being invoked.  This method > only outputs a data.message alert. > > For

[jQuery] jquery validate

2009-03-16 Thread Egipicio
hello I want to validate an input field so he accepts numeric value greater than 20 .. person type number is less than 20 open an alert is to do this with jquery?

[jQuery] Re: loop through div

2009-03-16 Thread ricardobeat
jQuery.fn.showLoop = function(i){ var i = i || 0, self = this; $( this[i] ).show(600, function(){ self.showLoop(++i); }); }; $('.type').showLoop(); On Mar 16, 7:27 pm, Tom Shafer wrote: > how can i loop through each div on a page and have them appear one by > one > i am tryin

[jQuery] Re: UI slider 1.6 - how to pass the slider values to an ajax script?

2009-03-16 Thread Richard D. Worth
It looks like you've got the function keyword inside the slide callback which is where you want to call the myAjax function, not declare it. I think you want something like this function myAjax(val1, val2) { // do something with ajax and the two values passed in, val1 and val2 } $(function() {

[jQuery] How best to create Google Calendar functionality in Jquery?

2009-03-16 Thread JFRanger
Found excaly what I need it's not using jQuery. http://www.dhtmlgoodies.com/scripts/dhtmlgoodies-week-planner/dhtmlgoodies-week-planner.html Is there something like it with jQuery outhere? Thanks, //JF//

[jQuery] Re: How to trigger "click" event in jquery

2009-03-16 Thread Yun W
Andy, I still don't know why the trigger click doesn't work. For me, it doesn't work on Firefox and I wrote a greasemonkey script to do the clicking via this code: var evt = document.createEvent("HTMLEvents"); evt.initEvent("click", true, true);

[jQuery] Re: Nested draggable list not causing droppable events to fire

2009-03-16 Thread Richard D. Worth
We'd love to help you out with this question over here: http://groups.google.com/group/jquery-ui - Richard On Mon, Mar 16, 2009 at 2:39 PM, Jason wrote: > > I have a nested list of the type below. It represents a folder > hierarchy and I am trying to make it so that if the user drags any > fo

[jQuery] Re: Loading javascript within javascript

2009-03-16 Thread James
You can try using jQuery's getScript() function: http://docs.jquery.com/Ajax/jQuery.getScript On Mar 16, 11:28 am, Scott wrote: > I'm using an excellent javascript library (the library does not use > jquery if that matters).  I need to provide other sites with a > reference to my javascript api

[jQuery] Re: Auto-suggest ?

2009-03-16 Thread James
Where is the source of your data coming from? Server-side? If so, you can use some kind of server-side script to create the auto- suggest options rather than mess with the autocomplete plugin. The autocomplete plugin only displays whatever data you feed it. On Mar 16, 7:09 am, Arno wrote: > Hi,

[jQuery] Re: loop through div

2009-03-16 Thread James
var arrayList2 = $(".list"); // set of elements with class 'list' $.each(arrayList2, function() { $(this).show(); }); Note that this will have all the elements display at once (technically). If you want it so that one appears, then another one appears maybe a second later, then another appe

[jQuery] loop through div

2009-03-16 Thread Tom Shafer
how can i loop through each div on a page and have them appear one by one i am trying var arrayList2 = $.makeArray(document.getElementsByClassName (".type")); $.each(arrayList2,function() { $

[jQuery] Re: Dependant on string does not work

2009-03-16 Thread ricardobeat
Have you tried 1.3.2? A lot of selector bugs have been fixed in this release. Try changing it to return !!$(element.form).find(param).length and see if it works. - ricardo On Mar 16, 4:30 pm, chielsen wrote: > So i upgraded to the latest version and waisted my day :( > Seems like the dependant

[jQuery] Re: unbind all events from jquery 1.3.2

2009-03-16 Thread ricardobeat
You could simply use $(window).trigger('unload') That will unbind all events bound through jQuery. A function for doing that is already defined in the source code: jQuery( window ).bind( 'unload', function(){ for ( var id in jQuery.cache ) // Skip the window

[jQuery] Re: jqGrid UI Theming

2009-03-16 Thread Rey Bango
Thank you for doing this Tony. Not only are you supporting the jQuery project with a great grid control but you're also going through great lengths to ensure integration with jQuery UI. You're a great project supporter. Thanks, Rey jQuery Team Tony wrote: I'm glad to anounce the new relea

[jQuery] Fading issues in Internet Explorer 7 when using jQuery

2009-03-16 Thread staffan.estberg
Hi, I'm using jQuery on a site that I'm working on and everything works as it should - except in Internet Explorer 7 (and previous versions, but the site doesn't support them). Fading content on the site simply won't show up in this browser. Take a look at http://dev.staffanestberg.com/fromswede

[jQuery] Re: exclude input types

2009-03-16 Thread Stephen Sadowski
Hey, You may want to try $('div#tabs input[type!=hidden]').each(function(){/*whatev*/}); Hope that helps! On Mon, 2009-03-16 at 08:08 -0700, jjsanders wrote: > Hello, > > I want to select all my input from a form within a certain div except > hidden values. > So far I have this > > $('div#t

[jQuery] weird jquery functionality - doesn't work on server, but works at localhost

2009-03-16 Thread javo
Hi, I've build this simple website http://www.blogate.org/ to help bloggers to publish their articles, but I've one problem If you click on one of the red menu items on the right, you should see animation in the middle of that box, informations box should fade out and fade in immediately, unfortu

[jQuery] Re: AJAX External content doesnt work properly

2009-03-16 Thread magnoagf
Hi Charlie ! i've just started working with jquery could you tell me the way you load the external page ? i'm having problems with php , and i'm not sure i'm using the correct function thanks!

[jQuery] [tooltip] Possible to disable hiding onclick?

2009-03-16 Thread andrew623
I'm a first time jQuery user and I just finished integrating jQuery and tooltip (http://docs.jquery.com/Plugins/Tooltip) on my website. Things are going great and I'm regretting not using it for so long, but my problem is that my tooltips disappear on click. This isn't an issue for links but I ha

[jQuery] Does jquery.cycle.all.js work with jquery 1.2.1?

2009-03-16 Thread danhaskett
hi there so i basically downloaded a newer version of jquery and am using that on my site to get some other effects working, but now the slideshows have stopped working that normally work. you can see for instance at http://www.danhaskett.co.uk/index.php?/new-work/kulttuurivihkot-magazine/ do

[jQuery] UI slider 1.6 - how to pass the slider values to an ajax script?

2009-03-16 Thread borg
Hi I am a novice to javascript and jquery developer trying to pass slider values to an AJAX script. My slieder looks like this: $(function() { $("#slider-range").slider({ range: true, min: -10, max: 66,

[jQuery] dropShadow intermittent Height/Width issue

2009-03-16 Thread micha...@gmail.com
I'm having an issue with a drop shadow on a table element. Sometimes when the page loads, the drop shadow is the wrong width and height for the table. I can't reliably reproduce the error, but it seems to happen more when there's nothing in the cache. The size seems arbitrary -- it's not the same

[jQuery] [autocomplete] Auto-suggest ?

2009-03-16 Thread Arno
Hi, I'm a young developper, and i want to enhance the autocomplete plugin. In fact, I can't use this plugin for an "auto-suggest", for a Tag input (User can select a tag which already exists, but he can create one if he doesn't exist ) I try but i fail to use autocomplete plugin for this. Can

[jQuery] Loading javascript within javascript

2009-03-16 Thread Scott
I'm using an excellent javascript library (the library does not use jquery if that matters). I need to provide other sites with a reference to my javascript api (which depends on the above javascript). However, I don't want other sites to have to enter something like this: http://www.othercompa

[jQuery] jGrid with Slider Pagination

2009-03-16 Thread cch
Has anyone seen an example of jqGrid that uses the JQuery slider widget for paging navigation? Or implemented that combo themselves? The slider would replace the text input field that allows the user to input the page he/she wants to see. ComponentArt's .NET grid component offers the slider (see

[jQuery] Custom Error placement with jQuery form validation??

2009-03-16 Thread Chris K
I am using jQuery form validation and it works great, but it displays the error message to the right of each form element. I actually want the error message for each form element to be in a specific div that I customize. For example: If anyone can tell me how you would do that it would be gre

[jQuery] Re: [validate] How to disable submit button until form is fully validated

2009-03-16 Thread Stephen Sadowski
Hey, How about $('#form input,select,radio').change(function() { /* check to see if necessary fields are filled out, if so enable submit */} You do have some load for each change on a field, but it would keep the user from being able to submit and validate until you're ready for them to do so.

[jQuery] Nested draggable list not causing droppable events to fire

2009-03-16 Thread Jason
I have a nested list which represents a folder hierarchy. An example of one of these lists is below. Basically I want the user to be able to drag any of the folders into a droppable. As is, if the user starts dragging Folder1 in the example below, the whole list is dragged along as well (which

[jQuery] Re: Add option to combo

2009-03-16 Thread Stephen Sadowski
Hey there, how about using .prepend(), if all you want to do is insert it first? -S On Mon, 2009-03-16 at 08:25 -0700, Chizo wrote: > Hi people, how can i add a first option value to a combobox, > containing for example "Select..." > With append i can add the new value, but i don´t know how to

[jQuery] Re: How best to create Google Calendar functionality in Jquery?

2009-03-16 Thread JFRanger
Val, did you find you where looking for? I need excaly that, do you have something to share with me? Thanks, //JF//

[jQuery] Nested draggable list not causing droppable events to fire

2009-03-16 Thread Jason
I have a nested list of the type below. It represents a folder hierarchy and I am trying to make it so that if the user drags any folder in the tree, all of the children will be dragged along with it. In the example below, if the user drags Folder1 the entire tree comes with it (which is what I

[jQuery] [validate] ASP.Net style validation group

2009-03-16 Thread Sam
Hi folks, I couldn't find any solutions to this. I needed the validate plugin to have validation group like functionality for use on asp.net webforms (because asp.net only allows one form). I'm not much a javascript programmer but I had a crack at it anyway. After stumbling in the dark for a bit

[jQuery] Re: Very Small Script Not Working in IE 7

2009-03-16 Thread DLee
That works great guys. Thanks a heap! On Mar 16, 9:29 am, errant wrote: > Hi. First, make sure events are attached to elements and firing ( $ > (".sidebar a").mouseover(function(){ alert(this) }; or smth like > this). Second, there are nice method called > hover:http://docs.jquery.com/Events/ho

[jQuery] Re: Photo Gallery, Thumbnail navigation

2009-03-16 Thread kmoll092
I am looking at jcarousel and i am a little confused on how to integrate and can't seem to find great documentation, is there a site with example code on how to integrate it into my site. If anyone else has a suggestion on the best way to acheive my goal I would love to hear it. My initial thoug

[jQuery] Re: JavaScript Loading Question

2009-03-16 Thread Jonathan
Since the browser will always have the Markup and CSS before the javascript is finished it's a pretty typical approach to avoid seeing stuff before the JS is done, although having a simplified version of your page that is accessible to users without JS enabled (for instance all the tabs visible f

[jQuery] Re: [validate] Dependant on string does not work

2009-03-16 Thread Jörn Zaefferer
Did you upgrade the validation plugin to 1.5.1 after updating jQuery to 1.3.1? Jörn On Mon, Mar 16, 2009 at 8:30 PM, chielsen wrote: > > So i upgraded to the latest version and waisted my day :( > Seems like the dependant requiring does not work (withh 1.3.1). > > The error occures for instance

[jQuery] Re: theme issue

2009-03-16 Thread Richard D. Worth
See http://jquery-ui.googlecode.com/svn/tags/1.7/themes/redmond/ The same individual files are also in the /development-bundle/themes/{themename}/ folder when you download a zip from the download builder: http://jqueryui.com/download If you need any further help, note there's a separate list ju

[jQuery] theme issue

2009-03-16 Thread Dan Vega
On a single page I am trying to use 1 theme for my accordion and 1 theme for my tabs. The themes in 1.7 have one huge css file and it seems like a real pain to go through and delete what I don't need. Even if I could do that it's not really a good solution because i might want to use that theme fo

[jQuery] [BlockUI Plugin]use links instead of buttons

2009-03-16 Thread efet
At script's demo page, blockui's developer used buttons to activate the scripts. How can I use links instead? I tried it as below but it did not work. xxx html: Run js: $(document).ready(function() { $('#demo5').click(function() {

[jQuery] Re: Change Table Row Color based on column content--SOLVED

2009-03-16 Thread bsisco
so here's what I would up doing. The data is coming from the django template. i added this after the {% for result in results %} template tag in the admin/change_list_results.html template: $(document).ready(function(){ var column = 12 $('img[alt="1"]').parent().filter('td:nth-ch

[jQuery] Re: JavaScript Loading Question

2009-03-16 Thread MonkeyBall2010
Is this the best practices workaround? I hardly ever see this on other sites that use jQuery or a similar JS library. On Mar 13, 7:20 pm, James wrote: > For jQuery UI Tabs I get that issue too where it will display the HTML > list before turning into tabs. Though usually only just for the > init

[jQuery] Sustain a hover over two elements

2009-03-16 Thread Ed Lerner
I have an that, once hovered over, animates and fades in the of a larger version of the picture, along with text and a hyperlink. When mousing out, the animates and fades away. This works fine, only my hover function only pertains to the itself. As soon as either a) the appears over the , or

[jQuery] Re: Photo Gallery, Thumbnail navigation

2009-03-16 Thread kmoll092
that looks exactly like what I am looking for, i am going to read up on it and see what I can do. Do you find it difficult to integrate into sites, or did you have any trouble styling the navigation to fit the site? Thanks for the info, it will be a big help On Mar 15, 3:21 pm, Jon Crump wrote

[jQuery] Re: Change Table Row Color based on column content

2009-03-16 Thread ricardobeat
Assuming you have this: Something here You'd use this javascript: $('#dj .options tr').each(function(){ var self = $(this); self.find(':checkbox').click(function(){ self.toggleClass('selected') }); }); I don't know if it's possible for the click event to fire

[jQuery] Re: Add option to combo

2009-03-16 Thread Paul Mills
Hi, Try using prepend to add at the beginning. See jQuery docs - http://docs.jquery.com/Manipulation/prepend Paul On Mar 16, 3:25 pm, Chizo wrote: > Hi people, how can i add a first option value to a combobox, > containing for example "Select..." > With append i can add the new value, but i do

[jQuery] validate plugin (validate elements)

2009-03-16 Thread led
how to just validate elements in a div

[jQuery] [validate] Dependant on string does not work

2009-03-16 Thread chielsen
So i upgraded to the latest version and waisted my day :( Seems like the dependant requiring does not work (withh 1.3.1). The error occures for instance when you have a require: '#item:filled' option. What happends is in this code: depend: function(param, element) {

[jQuery] Re: unbind all events from jquery 1.3.2

2009-03-16 Thread Jonathan
jQuerys selector engine is browser independent. So $("*") actually refers to all elements and works in all browsers (this is why we love it). But I would be careful. $("*").unbind() can be slow. On Mar 16, 11:50 am, redcom wrote: > isn't this ie specific? > > On Mar 16, 8:50 pm, MorningZ wrote

[jQuery] [validate] How to disable submit button until form is fully validated

2009-03-16 Thread D.Kreft
A variant of this question pops up on occasion, but none of the answers I've seen thus far suit my use case. The solution usually involves the recommendation to do something like this: $(...).validate({ ..., submitHandler: function() { // send AJAX request for calcu

[jQuery] showResults plugins

2009-03-16 Thread .Nil
can somebody send me a working example of showresults plugin. The sample mentioned on the site refers some css file for template creation which I do not have and do not know where to get these from Appreciate if you send some working code sample ~nil

[jQuery] Re: unbind all events from jquery 1.3.2

2009-03-16 Thread redcom
isn't this ie specific? On Mar 16, 8:50 pm, MorningZ wrote: > *maybe* > > $("*").unbind(); > > all your code is looking at the document itself and then the > tag itself > > On Mar 16, 2:44 pm, redcom wrote: > > > Hello > > I have a custom application build on top of gecko 1.9 and using > > spi

[jQuery] Re: unbind all events from jquery 1.3.2

2009-03-16 Thread MorningZ
*maybe* $("*").unbind(); all your code is looking at the document itself and then the tag itself On Mar 16, 2:44 pm, redcom wrote: > Hello > I have a custom application build on top of gecko 1.9 and using > spidermonkey and some c++ calls js->c++->js > > When i reload one application page i

[jQuery] unbind all events from jquery 1.3.2

2009-03-16 Thread redcom
Hello I have a custom application build on top of gecko 1.9 and using spidermonkey and some c++ calls js->c++->js When i reload one application page i get some events triggered after the page has been loaded. The GC is destroying my objects and html elements some how, but the events remain attac

[jQuery] How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler?

2009-03-16 Thread Jay W
How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler? The goal is to have an event handler in the main window, then whenever a new link from different browser window is dragged into the main window, the dropped link will

[jQuery] Re: NEW! Star Rating Plugin v3.00

2009-03-16 Thread Jack Killpatrick
Very nice. I've used a prior rev and liked it. Great upgrades here. Thanks much! - Jack Diego wrote: NEW! jQuery Star Rating Plugin v3.00 http://www.fyneworks.com/jquery/star-rating/ New features: - Now entirely based in the $.fn.rating namespace - Now uses $.fn.data t9o store control setti

[jQuery] Re: Return CSS Style?

2009-03-16 Thread sfea...@gmail.com
ok, next i want to be able to rollover the element, in this case, an h1, and have the css definitions pop up in a tool tip box. so i've got my custom tool tip box calling an external file named cssHovTip.asp. in that file i have a div class called "css-code". back in the original file i am doing

[jQuery] Unsubscribe

2009-03-16 Thread Shashank Tilwalli
Unsubscribe From: jquery-en@googlegroups.com [jquery...@googlegroups.com] On Behalf Of Dave Roberts [dave.a.robe...@gmail.com] Sent: Monday, March 16, 2009 1:41 PM To: jQuery (English) Subject: [jQuery] Form Plugin data return type Hello, I'm trying to s

[jQuery] Re: busy indicator

2009-03-16 Thread Karl Swedberg
Take a look at Mike Alsup's BlockUI plugin: http://malsup.com/jquery/block/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 16, 2009, at 1:43 PM, miro wrote: is there any available plugin which works for showing busy indicator ? I am looking fo

[jQuery] busy indicator

2009-03-16 Thread miro
is there any available plugin which works for showing busy indicator ? I am looking for something which masks the page with some background color and adds this message Loading , some what like a modal window which blocks the actual page -- View this message in context: http://www.n

[jQuery] Form Plugin data return type

2009-03-16 Thread Dave Roberts
Hello, I'm trying to submit a form via Ajax and receive a JSON return type http://imgur.com/2KZ1.png As you can see in the screen shot, I call the method ajaxForm, and on success of the ajax call, processJson is being invoked. This method only outputs a data.message alert. For some reason, the

[jQuery] NEW! Star Rating Plugin v3.00

2009-03-16 Thread Diego
NEW! jQuery Star Rating Plugin v3.00 http://www.fyneworks.com/jquery/star-rating/ New features: - Now entirely based in the $.fn.rating namespace - Now uses $.fn.data t9o store control settings - API to set control value / state via javascript - API to change readOnly option dynamically - API to

[jQuery] Re: Button Actions

2009-03-16 Thread brian
The ajaxForm() method is meant to run as the page is loading. It doesn't submit the form, it simply sets up a submit handler on your form. You're basically applying the plugin to the element, just as with validate(). The callback function that it can take as a parameter would be some routine you w

[jQuery] Re: exclude input types

2009-03-16 Thread Karl Swedberg
On Mar 16, 2009, at 11:08 AM, jjsanders wrote: Hello, I want to select all my input from a form within a certain div except hidden values. So far I have this $('div#tabs input').each(function(){ //functionality }); How can i exclude hidden values? Hi, If you want to exclude inputs with

[jQuery] Re: Toggle stealing my sanity....

2009-03-16 Thread mkmanning
this won't work: jQuery("#profile-edit-avatar").toggle(alert('toggled!')); do this: jQuery("#profile-edit-avatar").toggle(function(){alert ('toggled!');}); On Mar 16, 7:51 am, Michal Popielnicki wrote: > Hi there. > > I'm running jquery 1.3.2 and I've found rather strange behavior of > toggle f

[jQuery] Re: Fancybox and IE7 drop shadow?

2009-03-16 Thread mrech
Hi. Maybe you figured it out by now, if not I think I know the problem. I had the exact same problem a while ago, and as you said - it drives you crazy. But eventually I figured it out. I had to remove the «text- align: center;» from «body» in the CSS. So if you just remove that it should probabl

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-16 Thread husayt
Tin, It is all excellent stuff, Thank you for your efforts. Since you want more people to get involved, and JQuery UI is missing a key component - grid, why don't you suggest them to pick this one and continue it as part of the next native Jquery UI set of components. That would certainly be best

[jQuery] jquery circular carousel errors in IE with PNG images

2009-03-16 Thread devoncoder
I've encountered yet another issue with IE... while running a jquery based script to produce a circular carousel of images, IE errors at the end of the image list if there are only PNG images in the carousel (works fine in FF). A sample with 3 images is available here: http://www.bostonwebhostin

[jQuery] Superfish table based menu not ul

2009-03-16 Thread John
Hi I'm trying to use the jQuery superfish plug-in to create the 2 level menu but I need to grab the first level of the menu from table and td not from ul and li I'm new to jQuery so I can't get it work any one could help me with that? this is my html first level

[jQuery] Toggle stealing my sanity....

2009-03-16 Thread Michal Popielnicki
Hi there. I'm running jquery 1.3.2 and I've found rather strange behavior of toggle function. In general i have following HTML: Hint text The style of id is: #profile-edit-avatar{ display: none;} Now, when I launch toggle function on that element, for example this way: jQuery("#pro

[jQuery] Change Table Row Color based on column content

2009-03-16 Thread bsisco
I have a django app where i have a model which contains a boolean (checkbox) field. What i would like to do is change the corresponding table row color in the admin table based on whether or not this field is checked. i have come to the conclusion that this is only possible with jquery. i am a

[jQuery] jQuery Migrations

2009-03-16 Thread WintersNight
Hey all. I'm working on a project requiring client-side data storage based on the new HTML 5 Offline applications spec. Having a database on the client like Google Gears is a great idea, but it'd be nice to have a framework to manage the database. I was thinking of running up a jQuery plugin tha

[jQuery] Add option to combo

2009-03-16 Thread Chizo
Hi people, how can i add a first option value to a combobox, containing for example "Select..." With append i can add the new value, but i don´t know how to put it first. Any ideas will be apprecited! Thanks!

[jQuery] Re: Qty * price

2009-03-16 Thread ebru...@gmail.com
Hi martijn, Thx for your reply i found http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm and that is exactly what i need. The same idea as what you are saying. Erwin On 16 mrt, 14:56, Martijn Houtman wrote: > On Mar 16, 2009, at 2:46 PM, ebru...@gmail.com wrote: > >

[jQuery] exclude input types

2009-03-16 Thread jjsanders
Hello, I want to select all my input from a form within a certain div except hidden values. So far I have this $('div#tabs input').each(function(){ //functionality }); How can i exclude hidden values?

[jQuery] Re: remove radio buttom

2009-03-16 Thread Chris Hall
Doh Thanks so much for bringing that to my attention. I must have looked at that a million times and was convinced the issue was elsewhere. On Mar 16, 9:12 am, Paul Mills wrote: > Hi Chris, > Your .empty() refers to .gloves_wear  - but the class on the is > wear_gloves ! > > Otherwise cod

  1   2   >