[jQuery] format number

2009-10-04 Thread runrunforest
How can i make 1500 look like 15,000,000 and 1500.00 look like 15,000,000.00 ?

[jQuery] Re: wrap siblings between 2 specific tags

2009-10-04 Thread stvwlf
found the solution - anyone needing this look here: http://groups.google.com/group/jquery-en/browse_thread/thread/2bc5c6807808e148

[jQuery] Re: POSTing an html input field in an auto-complete jquery field.

2009-10-04 Thread Sloan
Hi Mark, Could you post your code for onlookup? It would help to see the javascript code to see if any of it deals with jQuery changes. Sloan

[jQuery] Re: jQuery - Random Selection

2009-10-04 Thread Matthew Wehrle
Cheers for the help guys. I get exactly what you're driving at, but as I am a complete Javascript newb I have no idea how to put all of that code into my script. If you could be a bit more specific that'd be awesome. Cheers again, Matt.

[jQuery] Re: format number

2009-10-04 Thread runrunforest
cool, but that leads to another problem The computer now thinks 15,000 is just 15 instead of fifteen thousands

[jQuery] Re: format number

2009-10-04 Thread runrunforest
cool, but that leads to another problem The computer now thinks 15,000 is just 15 instead of fifteen thousands. I need the formated number for later calculation, I have to make the computer think 15,000 is actually fifteen thousands Is there anyway to take the comma out before calculation or a

[jQuery] image rollover

2009-10-04 Thread jessie
Hi I have implemented this jQuery for image rollover on href The only problem is, is there a way to call more than one class for this particular function? $(function(){ // Document is ready $(#nav td).enter();// call the function }); So i have more than one class i'd like to this function

[jQuery] Use a string within a load request?

2009-10-04 Thread FineThought
Hi, I'm brand new to jQuery and learning as I go. I've searched a lot over the web regarding this and need some help. I'm trying to use a string within a load request. The code snippet is below: var myUrl = $trigger.attr('href'); #jqmTarget.load(myUrl +#lightboximg) This works, but doesn't

[jQuery] Re: $ not recognized even though jQuery library referenced

2009-10-04 Thread Mike Alsup
and yes, the paths are right.  I still get this error in firebug no matter what: $ is not defined Must be more to it than that. Can you post a link to your page?

[jQuery] Dynamically added dom object does not works with jEditable Plugin

2009-10-04 Thread csplrj
I downloaded jEditable from http://www.appelsiini.net/projects/jeditable I have run the code as $(.cont).editable(function(value, settings){ return value; },{submit:'OK'} ); Afterwards for some reasons, I add the following code $(body).append(div

[jQuery] Re: $ not recognized even though jQuery library referenced

2009-10-04 Thread csplrj
Generally it should work without the below lines but then also try this Run this code before any jQuery Code runs and see var $ = jQuery.noConflict(); CSJakharia

[jQuery] Problem with IE - Trying to append something to the 'body'

2009-10-04 Thread Vítor
I trying to append some text to an html using jquery and it works very well on FF, Safari and Chrome. On IE 6/8, it did not append even putting the code inside $(document).ready(). Any ideas? Cheers! !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://

[jQuery] Re: Cleartype issues with jquery/superfish in IE8

2009-10-04 Thread valleyofmalls
Anyone? It's been a while and still have not figured this out. Thanks in advance! On Aug 10, 1:16 pm, pixelwiz pixel...@gmail.com wrote: I'm having this issue with IE8 as well and my implementation of Superfish menu.  Anyone know of a fix? -Roman

[jQuery] Re: Problem with IE - Trying to append something to the 'body'

2009-10-04 Thread Vítor
Problem solved. Thanks anyway. On Oct 4, 11:39 am, Vítor rotiv...@gmail.com wrote: I trying to append some text to an html using jquery and it works very well on FF, Safari and Chrome. On IE 6/8, it did not append even putting the code inside $(document).ready(). Any ideas? Cheers!

[jQuery] Re: Use a string within a load request?

2009-10-04 Thread Paul Mills
Hi, I think you need a space before the #lightboximg Try #jqmTarget.load(myUrl + #lightboximg) Paul On Oct 4, 9:15 am, FineThought nathanleighda...@hotmail.com wrote: Hi, I'm brand new to jQuery and learning as I go. I've searched a lot over the web regarding this and need some help. I'm

[jQuery] Re: show()ing thousands of divs

2009-10-04 Thread Sid
OK - So I implemented this and the performance sucked on IE so I made some more performance improvements. After a few iterations I think I'm happy with the way it's working. We can complain (to put it mildly) about IE's javascript performance all we want but the useful unintended consequence of

[jQuery] Re: stopping and restarting the auto scrolling

2009-10-04 Thread Macsig
Any ideas at all? I'm really stuck on this. THANKS FOR YOU HELP. I appreciate it. Sig On Oct 3, 6:08 pm, Macsig sigbac...@gmail.com wrote: Update: on jquery website I found something that could help me to achieve the stopping/restarting effect I need, here the code div.hover(            

[jQuery] Re: validate

2009-10-04 Thread Paul Speranza
I figured it out. I had to use the showCustomerErrors method and got tid of focus cleanup. On Oct 2, 10:45 am, Paul Speranza paulgspera...@gmail.com wrote: I am having a problem getting the error container to clear out after I have fixed invalid inputs. I am using the invalidHandler option.

[jQuery] Re: $ not recognized even though jQuery library referenced

2009-10-04 Thread Michael Geary
How do you know the paths are right? What did you do to confirm this? Did you use the Web Developer Toolbar's Information/View JavaScript command after the page is loaded, and observed the jQuery code being present there? Or what? If $ is undefined, it pretty much has to mean that jQuery wasn't

[jQuery] AJAX load: scrolling

2009-10-04 Thread Dennis Madsen
I've created some jQuery which remove many tr rows from my table and inserts new via AJAX. This indicate that the page is scrolling because first the table increase after elements is removed and afterwards it grows when the new content is inserted. Is there a way to let jQuery update this table

[jQuery] Re: stopping and restarting the auto scrolling

2009-10-04 Thread Karl Swedberg
I've been working a bit with the jCarouselLite plugin, adding a few features as I've needed them. I just put my version on GitHub if you'd like to give it a whirl: http://github.com/kswedberg/jquery-carousel-lite/fast_forward There is a pause option for the carousel that will automatically

[jQuery] Re: jQuery strange behavior

2009-10-04 Thread Marty Vance
On Sun, Oct 4, 2009 at 6:39 PM, Marty Vance marty.va...@gmail.com wrote: I've come across a situation where jQuery (1.3.2) doesn't behave as expected.  I've put up a batch of tests at http://www.xaraya.com/~dracos/strange.html What happens is when an HTML string contains two top level

[jQuery] Re: stopping and restarting the auto scrolling

2009-10-04 Thread Macsig
Thanks Karl, it does exactly what I was looking for. Is there a parameter to set in order to avoid the automatically pause on mouseenter and resume it on mouseleave? I can't find anything on the documentation about that. Or I have to remove the code from the plugin itself? Thanks again and

[jQuery] Re: stopping and restarting the auto scrolling

2009-10-04 Thread Macsig
Thanks Karl, it does exactly what I was looking for. Have a nice day! Sig On Oct 4, 4:56 pm, Karl Swedberg k...@englishrules.com wrote: I've been working a bit with the jCarouselLite plugin, adding a few   features as I've needed them. I just put my version on GitHub if you'd   like to

[jQuery] Re: image rollover

2009-10-04 Thread jessie
can anyone help me please? On Oct 4, 11:04 pm, jessie mi...@optusnet.com.au wrote: Hi I have implemented this jQuery for image rollover on href The only problem is, is there a way to call more than one class for this particular function? $(function(){  // Document is ready  $(#nav

[jQuery] Help with values being returned

2009-10-04 Thread Nathan
I am receiving back values from google maps, the values returned are correct although I would prefer them to return in a different format. *** Code *** value = jQuery(.google_impnote).next(b).text(); value returns back a resault like so ValuesValuesTest I need to return the values to be

[jQuery] Re: POSTing an html input field in an auto-complete jquery field.

2009-10-04 Thread mrk.enriquez
hey thxs for the reply...i feel like a fool there was a simple typo in my code. it works now ive very sorry i wasted your valuable time. kind regards, - mark On Oct 4, 3:40 am, Sloan sl...@sloanthrasher.com wrote: Hi Mark, Could you post your code for onlookup? It would help to see the

[jQuery] Re: stopping and restarting the auto scrolling

2009-10-04 Thread Karl Swedberg
sorry about that. yeah, in the options object, just set the pause option to false. I haven't really updated the documentation since I just made it public today. for you. .jCarouselLite({pause: false}) If you look at the source file, you'll see all the options listed at the top. --Karl

[jQuery] jquery style carousel

2009-10-04 Thread runrunforest
Hi, I like the carousel in this home page very much: http://www.realtor.com/ Do you know where i can find and download something like that ?

[jQuery] Is it possible to sort columns by a row using jQuery

2009-10-04 Thread nate
for example when row two is clicked I would like the table to reorder a, b, c, d table tr tdcol 1/td tdcol 2/td tdcol 3/td tdcol 4/td /tr tr tdb/td tda/td tdd/td