[jQuery] Jquery mouse events

2009-04-29 Thread Waseem
Hi there, I am creating a jquery content scroller plug in. ( with custom scroll bars ) I have all the working with up and down arrows which animate the scrolling content. works great ! I am fairly new to jquery so I was wondering if someone could help me out with the actual scrollbar. What I'm ha

[jQuery] jquery cycle plugin conflicts with the fix we use for PNG's in IE6

2009-04-29 Thread Jake Barnes
This is a tough one. Any help, much appreciated. I've been experimenting all day with different ideas toward fixing this, but so far nothing has worked. Please look at this page in IE6: http://www.teamlalala.com/lark/Simplicity%20ie.htm In IE6, you can see a huge gap at the bottom of the page,

[jQuery] unsubscribe

2009-04-29 Thread Venkatesan Kannan
Please unsubscribe from this group.

[jQuery] Re: XMLDOM extension plugin for jQuery

2009-04-29 Thread Jeffrey
I just changed the plugin to use XMLDOM more correctly. It's version 1.1 beta now. http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/29/jquery-xmlext-plugin.aspx

[jQuery] tablesorter.js vs Numerals with Commas

2009-04-29 Thread David Blomstrom
I'm using jQuery's tablesorter.js to create tables with sortable rows. It works fine on both text and numerals - but only if they have no commas. For example, the following column would sort properly: 2 18 401 3 15 But this column... 1,200 408 26,048 ...would sort like this: 1,200 26,048 408 Does a

[jQuery] Applying Table Row Sorter to Multiple Tables

2009-04-29 Thread David Blomstrom
I'm using jQuery's tablesorter.js to create tables with sortable rows, as applied to tables with the ID "myTable." I just wondered if there's a way to make it work with multiple tables on a single page. I created two tables and gave each of them the ID myTable, but only the first table worked. I ca

[jQuery] Zebra (stripes) Widget vs Colgroups (CSS)

2009-04-29 Thread David Blomstrom
I'm using jQuery and the Zebra widget to produce alternately colored rows on my tables. It works great but it kills my CSS colgroup functions. For example, the following code... ...should produce a table where every cell in the first column is aqua, every cell in the second yellow. But if my Ze

[jQuery] Re: XMLDOM extension plugin for jQuery

2009-04-29 Thread Jeffrey
Found some issue, the plugin is under modification now and will republish latter, sorry. On 4月29日, 下午5時50分, Jeffrey wrote: > I found that appending XML string as XML node will fail in IE, so I > wrote a small plugin to solve the problem, here is my > post:http://blog.darkthread.net/blogs/darkth

[jQuery] full file path from file input

2009-04-29 Thread skunkwerk
Hi, some of the newer browsers (firefox 3) only make the filename available from a file element, even though the full path is displayed in the text box. anyone know of any techniques to get around this? i've tried using google gears, flash, and considered a java applet, but am having trouble

[jQuery] quick question about loading in form elements using load()

2009-04-29 Thread sneaks
Hi, hope everyone is well... my problem is simple, i am using load() to add an external file form contents to the dom. normally i have a listener for form elements such as inputs and textareas in my $(function() { }) that adds a class to inputs on focus and removes it on blur... but it doesnt

[jQuery] Re: Grabbing text inside an alt tag

2009-04-29 Thread mkmanning
A couple thoughts: 'alt' isn't a valid attribute of span; use 'title'. Using jQuery doesn't necessarily equate to easier. //POJS for (var i = 0; i < elem.length; i++) { if(!elem[i].title){elem[i].title="";} } //jQuery $('span').each(function(){ if(!this.title){this.title="";} }); On Apr 2

[jQuery] Re: Changing the Cell Colors in DatePicker

2009-04-29 Thread Code Daemon
Thanks, this works. Before using the attr() method, I was trying to use removeClass ().addClass(). This worked to remove the formatting the previous class had made, but the class I was trying to add had no effect. On Apr 29, 1:46 am, MOZ wrote: > Try > $(this).css({'background-color':'', 'c

[jQuery] Fade Background Help

2009-04-29 Thread PF
Hi everyone. I am using the following method to fade backgrounds in and out with jQuery: http://www.supercow.nl/jquery/fading_background.html I am wondering if anyone knows of a way to make the pictures fade into the next picture instead of fading to a background and then the picture. Thanks

[jQuery] Re: Grabbing text inside an alt tag

2009-04-29 Thread Charlie Griefer
On Wed, Apr 29, 2009 at 3:17 PM, Andy wrote: > > Is there a way to grab the text from inside a alt tag?  I have a site > that will have tons of span tags and I need to go through all of them > searching for the alt="" attribute then grab it. > > > I'm using some non-jQuery javascript, so I'm sure

[jQuery] Grabbing text inside an alt tag

2009-04-29 Thread Andy
Is there a way to grab the text from inside a alt tag? I have a site that will have tons of span tags and I need to go through all of them searching for the alt="" attribute then grab it. I'm using some non-jQuery javascript, so I'm sure there is an easier way to format this than what I current

[jQuery] Re: why is :first-child selecting sub elements?

2009-04-29 Thread Karl Swedberg
Hi Liming, Just a child combinator rather than a descendant combinator: $("div[id ^= 'childtest_' ] > :first-child").each(function() { alert( $(this).attr("id") ) }); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On

[jQuery] Change text items in URL

2009-04-29 Thread Tim
I have three radio boxes set up where each one is a different value. - red - blue - green I'd like when one of them is clicked to change the value of the url. So for example --Changethisvalue-- would be actively updated on each click. http://domain.com/ad/campaign/g/--Changethisvalue--/dck/35

[jQuery] Double submitted ajax requests

2009-04-29 Thread Josh Ain
Very intermittently, I am finding ajax requests submitted with jquery are being submitted twice, once with parameters, and once without parameters. The code looks something like this: jQuery.post("url?id=id", {param1: param1, param2: param2, id:

[jQuery] Re: jQuery barcode

2009-04-29 Thread Ricardo
Not really since it uses img elements to draw the barcode. But interfacing with a bitmap library or a "saveable" canvas would be very interesting indeed. On Apr 29, 2:14 pm, Web Specialist wrote: > This plugin could be very useful when jquery runs in server side. Today, > with ColdFusion, we're

[jQuery] Re: why is :first-child selecting sub elements?

2009-04-29 Thread Liming
my bad. I was changing it around. It shoudl be $("div[id ^= 'childtest_' ] :first-child").each(function() { alert( $(this).attr("id") ) }); On Apr 29, 3:55 pm, MorningZ wrote: > I don't understand.. there's no where that you are using ":first- > child" l

[jQuery] Re: Superfish and IE6 Z-Index

2009-04-29 Thread Forrest
I needed to add a little more to this entry. I now have a new problem in IE7. The flyout portion of the vertical menu forces the content of the center section down, causing a large gap in the content. Looking forward to some wisdom here. Thanks.

[jQuery] Re: why is :first-child selecting sub elements?

2009-04-29 Thread MorningZ
I don't understand.. there's no where that you are using ":first- child" like your subject line says On Apr 29, 11:43 am, Liming wrote: > Hello all, I have a lay out like so > > >                 >                         >                         >                 >                 >    

[jQuery] Re: countdown Plugin

2009-04-29 Thread gozigo_milis gozigo_milis
Sorry my English Is Bad:) I'm developing a web for online auction product. Each item have a different time , it get from database depend on item Example : Item A => Countdown 00:00:60 ( threshold 15) Item B => Countdown 00:00:45 ( threshold 10) Item C => Countdown 00:00:30 ( threshold 5) If the b

[jQuery] [validate] $.format conflict

2009-04-29 Thread h3
Hello there, I'm the author of the jQuery Timepickr (http://haineault.com/media/ jquery/ui-timepickr/page/) and I had a bug report which was resolved by a user. He found a conflict with my library and jquery.validation.js. http://code.google.com/p/jquery-utils/issues/detail?id=15 Both are used

[jQuery] [treeview] what are the possible options for this plugin?

2009-04-29 Thread Marv
There doesn't seem to be any place that I can find which explains the options available for the treeview plugin. Does anyone have a link or reference as to what the options are and what their settings mean?

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Nic Hubbard
Hi Mike, Yes, still having issues. It is not the anchors that I am concerned about (the pause/play icon). It is when you click the "Contact about this artwork" link, it should be pausing the cycle, which it is not doing. This is where my problem lies. On Apr 29, 10:15 am, Mike Alsup wrote: >

[jQuery] [treeview] top node (root) is open but has plus sign????

2009-04-29 Thread Marv
I have a treeview where there is only one node at the top of the tree with several child nodes -- some having child nodes -- some not. All open / close indicators are as expected EXCEPT the very top one which even though the node is open it show a '+' sign rather than a '-' sign which is the norma

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Rick Faircloth
Thanks for the explanation, Kevin! Rick On Wed, Apr 29, 2009 at 12:58 PM, Kevin Dalman wrote: > > Hi Rick, > > Karl's suggestion seems the most elegant (assuming it works OK). > > Here is some sample code for what he is suggesting > > -- in HEAD or a stylesheet... > body.js #media-gallery ul

[jQuery] Re: Trouble selecting a P inside a repeating DIV

2009-04-29 Thread Ricardo
The nth-child index is relative to the whole collection of children elements, not just the one you're selecting. With your new mark-up you're better off doing this: $(".insidepost ul + p") //or $(".insidepost p:first") .addClass("caminfo") .next('p').addClass("cambuy") .next('p').addC

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Mike Alsup
There is no 'start' command for cycle. The available string commands are stop, pause, and resume. If you want to stop the slideshow, then to restart you need to pass in the options again. Mike On Apr 29, 10:07 am, davebowker wrote: > Bump! > > Same problem here. Code looks fine? > >        

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread Mike Alsup
Nic, Are you still having a problem with this? Your pause and resume anchors appear to be working just fine. Mike On Apr 27, 3:04 am, Nic Hubbard wrote: > Really?  No one knows why the cycle pause is not working?  Someone > must be using this! > > On Apr 24, 8:25 am, Nic Hubbard wrote: > > >

[jQuery] Re: jQuery barcode

2009-04-29 Thread Web Specialist
This plugin could be very useful when jquery runs in server side. Today, with ColdFusion, we're creating reports with barcode inside using Java Barbecue library. Cheers Marco Antonio On Wed, Apr 29, 2009 at 1:28 PM, Ricardo wrote: > > On Apr 29, 8:04 am, apaella wrote: > > Hi all, > >I rel

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
Here is a variation on Eric's idea. But in this example, instead of writing the CSS rule via Javascript, write a rule to *negate it* inside a noscript tag. -- in HEAD or a stylesheet... #media-gallery ul li img { /* opacity *may* work better than display:none */ opacity: 0.01; filter: al

[jQuery] Re: Whats going on with this?

2009-04-29 Thread Rodrigo Lizarraga
yea, it turns out the wordpress plugin cforms was messing it up, so i disabled it on that specific page. As for the menu in IE, yea, IE 8 does not support cufon -_-, which is a javascript font replacement script

[jQuery] unsubscribe

2009-04-29 Thread Anil Kumar
-- “Every failure made me more confident. Because I wanted even more to achieve as revenge. To show that I could.”

[jQuery] Malsup Media Plugin (stop all players?)

2009-04-29 Thread David
First off this media plugin is awesome and has saved me a lot of time, thanks for all your work in developing this! Now to the issue. I am sure you have come across this before where you have 5-10 players on a page and you click the first player to listen and then about halfway through you click

[jQuery] jQuery Corners over a background image

2009-04-29 Thread gilberto.ramoso...@gmail.com
I've noticed that when you use the corner plugin using a background image the corners that the plugin is working will show part of the background, is there a way to fix this?

[jQuery] Superfish and IE6 Z-Index

2009-04-29 Thread Forrest
Working to implement Superfish - works great in Firefox, Safari, IE7, but the flyouts fail in IE6. I tried the recommended z-index fix, but obviously didn't get it right. Would appreciate a helping hand at: http://ohs.rouviere.com Thanks.

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
Hi Rick, Karl's suggestion seems the most elegant (assuming it works OK). Here is some sample code for what he is suggesting -- in HEAD or a stylesheet... body.js #media-gallery ul li img { /* opacity *may* work better than display:none */ opacity: 0.01; filter: alpha(opacity=1); }

[jQuery] Re: Whats going on with this?

2009-04-29 Thread brian
No, sorry. This was in FF 3.0.10/linux, btw. On Wed, Apr 29, 2009 at 11:59 AM, Rodrigo Lizarraga wrote: > Any idea where/how? >

[jQuery] Re: Whats going on with this?

2009-04-29 Thread Ricardo
On Apr 29, 1:12 am, Aeriform wrote: > http://mtschophouse.com/vero/menu/ > > Click on any of them, and they open up just fine, however, after this point > they dont close, and you also can't open any other one, it just... stays > stuck there. > Seems ok (the toggling), in FF and IE, have you fix

[jQuery] Re: Possible bug in selectors

2009-04-29 Thread Ricardo
You're misusing the children() method. It will only find *children* (immediate descendants) of the row (TDs in your case) and filter them according to the selector given. If you want to dig deeper, use find, or as you already discovered, chained children(). var_row.find('td:eq(0) input') On Apr

[jQuery] Re: jQuery 1.3.2 *SLOW* using ".class tag" selector?

2009-04-29 Thread John Resig
Upgrading is probably safe - it's the engine that'll be in jQuery 1.3.3. --John On Wed, Apr 29, 2009 at 8:35 AM, swalke16 wrote: > > I have a situation where I have some HTML I am selecting elements from > using the ".class tag" selector combination using jQuery v1.3.2. I > have noticed that i

[jQuery] Re: jQuery barcode

2009-04-29 Thread Ricardo
On Apr 29, 8:04 am, apaella wrote: > Hi all, >    I releades a new plugin for jquery named jQuery Barcode. > > http://code.google.com/p/jquery-barcode/ > > Works with Opera, Firefox3, IE8, Prism, Gecko-based browsers > > Could someone review it? > > Thanks! Does this have any use case besides pr

[jQuery] Re: Serialize jQuery Objects ?

2009-04-29 Thread Eric Garside
Why not assign a set of IDs to the elements you want to export? That will allow jQuery to quickly recache the elements. On Apr 29, 11:41 am, tjholowaychuk wrote: > Hello, I wrote a library which records / plays back DOM events with a > faux cursor, its working great looks just like the real thin

[jQuery] jQuery 1.3.2 *SLOW* using ".class tag" selector?

2009-04-29 Thread swalke16
I have a situation where I have some HTML I am selecting elements from using the ".class tag" selector combination using jQuery v1.3.2. I have noticed that in both IE8 and Firefox 3.0.10 this particular scenario is painfully slow to execute. From profiling in both browsers it appears that the Sizz

[jQuery] Re: Jquery Sound

2009-04-29 Thread Evan
On Mar 13, 3:06 pm, Paul Hutson wrote: > Hello, > > I've been trying to get the following working : > > http://dev.jquery.com/view/trunk/plugins/sound/ > > However, it only plays about a second to three seconds of the > designatedsoundbefore shutting off (in FF and Safari) but loads > fully in

[jQuery] why is :first-child selecting sub elements?

2009-04-29 Thread Liming
Hello all, I have a lay out like so I want to select the first child of "childtest_toprow" which is "subtest_1" when i do $("div[id ^= 'childtest_' ] :nth-ch

[jQuery] Suckerfish

2009-04-29 Thread TheCreationSite
If I load the jquery UI script after the Suckerfish script, then Suckerfish breaks and vice versa. There seems to be a conflict between the two. I am using Jquery 1.3 and UI 1.7.1. Has anyone else had this issue?

[jQuery] Serialize jQuery Objects ?

2009-04-29 Thread tjholowaychuk
Hello, I wrote a library which records / plays back DOM events with a faux cursor, its working great looks just like the real thing, however the one problem is exporting this data so it can be pulled in for playback in the future. I obviously cannot serialize entire jQuery objects using as JSON, s

[jQuery] Re: Whats going on with this?

2009-04-29 Thread Rodrigo Lizarraga
Any idea where/how?

[jQuery] Re: jQuery barcode

2009-04-29 Thread apaella
Yes, but I'm not able to embed a

[jQuery] Re: Whats going on with this?

2009-04-29 Thread brian
It looks like you have an infinite loop somewhere. These 2 errors repeat until JS is disabled: Warning: reference to undefined property opt.queue Source file: http://mtschophouse.com/vero/wp-content/plugins/cforms/js/calendar.js Line: 1 Error: jQuery.toggleElementsShown is not a function Source

[jQuery] Re: GET PARAM FROM URL WITH JQUERY

2009-04-29 Thread gozigo_milis gozigo_milis
I hava script like this function get_param_name(){ var regexS = "([\\#][^]*)"; var regex = new RegExp(regexS); var results = regex.exec(window.location.hash); var ret; if(results == null){ ret = ""; }else{ ret=results[0].replace("#",""); } return ret; } $(document).ready(function(){ var x=get_pa

[jQuery] Re: new version of loopedSlider is out! Looking for feed back

2009-04-29 Thread Nathan
In both scenarios the slider would still work If you have more slides then pagination links then you just won't be able to link to those slides and the pagination would obviously not highlight the selected number. If you have more pagination links then slides and are clicking next/ previous tha

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-29 Thread Jake McGraw
#commentWrapper is the selector for the following element: The JS I provided will append that element if it isn't already present. I did have to make a single change: $(body).append(''); to: $("body").append(''); Also, you should specify the type expected for the $.post call: $.post(url, d

[jQuery] Re: jQuery barcode

2009-04-29 Thread Richard D. Worth
http://code.google.com/p/jquery-barcode/wiki/Demo On Wed, Apr 29, 2009 at 11:12 AM, rigo wrote: > > Is there any example web page?

[jQuery] Re: new version of loopedSlider is out! Looking for feed back

2009-04-29 Thread Rick Faircloth
Couldn't ask for anything simpler than that! :o) What would happen if there were more thumbnails than space allows under the image? (Or if you have more numbers than space allowed?) Would the images not show beyond the edge of the photo or would they extend out to the edges of the window? On Wed

[jQuery] Re: Trouble selecting a P inside a repeating DIV

2009-04-29 Thread Tobias
Perfect. But just for future helpfulness of anyone coming across this post- I simplified my code above, it actually looks like > > Blah Blah Blah item 1 item 2 item 3 > > paragraph 1 > > paragraph 2 > > paragraph 3 > > As a consequence I need to use $(".insidepost p:nth-child(3)").addClass

[jQuery] Re: jQuery barcode

2009-04-29 Thread rigo
Is there any example web page?

[jQuery] Re: new version of loopedSlider is out! Looking for feed back

2009-04-29 Thread Nathan
Easy, just put small thumbnails in place of the numbers. On Apr 29, 7:32 am, Rick Faircloth wrote: > Hi, Nathan... > > How hard would it be to replace the numbers for manual photo selection > with small thumbnails? > > Rick > > > > > > On Wed, Apr 29, 2009 at 9:55 AM, Nathan wrote: > > > Just

[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-29 Thread Karl Swedberg
So sorry, I haven't had a chance to fully explore this yet. Not ignoring you. Just having a hard time finding the time and tracking down the problem. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 28, 2009, at 10:31 AM, DotnetShadow wrote: Hi ther

[jQuery] Re: Cluetip not working on multiple links calling local html data

2009-04-29 Thread Karl Swedberg
Hi Mark, Thanks a lot for your patience. I believe I've fixed the problem. It was a bad regular expression. For the time being, you can grab the fixed version here: https://github.com/kswedberg/jquery-cluetip/tree/master Here's how it's working now: - If you use an id selector to target the

[jQuery] Help Form validation breaks after the first search that is succesful "Conflict in the script" (jquery.forms.js)

2009-04-29 Thread hollow
Hi, I've a code that validates jquery form and gives a result, but when i try a second search it stops working. bare with my programming as i'm not an expert in javascript. There is no error message that tells me where to look (firefox console). Can someone help me figure out what is happening

[jQuery] Re: countdown Plugin

2009-04-29 Thread Chacha Golden
Could you restate that last line "If the countdown is done then the bid will be 30 seconds". I don't quite understand it On Wed, Apr 29, 2009 at 5:43 AM, gozigo_milis gozigo_milis < gozigomi...@gmail.com> wrote: > I'm developing a web for online auction items. Each item will have a > countdown su

[jQuery] Re: new version of loopedSlider is out! Looking for feed back

2009-04-29 Thread Rick Faircloth
Hi, Nathan... How hard would it be to replace the numbers for manual photo selection with small thumbnails? Rick On Wed, Apr 29, 2009 at 9:55 AM, Nathan wrote: > > Just released a new version of loopedSlider and am looking for some > feedback. > > loopedSlider is a plugin made for jQuery that

[jQuery] Re: GET PARAM FROM URL WITH JQUERY

2009-04-29 Thread Martijn Houtman
On Apr 29, 2009, at 2:45 PM, gozigo_milis gozigo_milis wrote: example : http://www.matrix.com/index.php?p=gallery#page=1 how can I get page=1 (parameter after sign #) window.location.hash

[jQuery] GET PARAM FROM URL WITH JQUERY

2009-04-29 Thread gozigo_milis gozigo_milis
Hello all I will aks sth example : http://www.matrix.com/index.php?p=gallery#page=1 how can I get page=1 (parameter after sign #) thanks

[jQuery] countdown Plugin

2009-04-29 Thread gozigo_milis gozigo_milis
I'm developing a web for online auction items. Each item will have a countdown such as 00:10:00 and will go down if the user does not make a bid. If the countdown is done then the bid will be 30 seconds. The problem is: How do I create a script so that the Auction does not connect to the server e

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-29 Thread davebowker
Bump! Same problem here. Code looks fine? $('#feature .sim-link').toggle(function () { $('#feature').cycle('stop'); }, function() { $('#feature').cycle('start'); }); Anyone have a solution? Dave On Apr 27, 8:04 am, Nic Hubbard wrote: >

[jQuery] new version of loopedSlider is out! Looking for feed back

2009-04-29 Thread Nathan
Just released a new version of loopedSlider and am looking for some feedback. loopedSlider is a plugin made for jQuery that solves a simple problem, the looping of slide content. It was created to be easy to implement, smooth and most of all end the "content rewind" that most other content slider

[jQuery] Re: serialScroll option : start --> no effect

2009-04-29 Thread Niels
Ariel, Thanks for your support. but no luck: http://www.egoactive.com/transfer/jquery-demo/#technical/django changed items:'li', To items:'li.section', and removed the list items within the panes Do you have another suggestion? On Apr 24, 5:54 pm, Ariel Flesler wrote: > Your

[jQuery] Re: Form Tips

2009-04-29 Thread Alexsandro_xpt
I mad something in http://www.assessoriatecnica.com.br/contato Take a look. On 28 abr, 20:45, shapper wrote: > Hello, > > I would like to show a tip or balloon with some info when a user > clicks an input to enter a value. > > Does anyone knows a good plugin that does this? > > Thank You, > Mig

[jQuery] Re: Form Tips

2009-04-29 Thread Javier Guerrero
you can try with this: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Saludos

[jQuery] Need advice on app to

2009-04-29 Thread JamieJamie
Need advice on app to duplicate functionality at bridalcanvas . com...Please point me in the right direction.

[jQuery] bridalcanvas . com code

2009-04-29 Thread JamieJamie
Does anyone know where I can find a package that provides the functionality available at bridalcanvas . com? I believe it is based on jquery. Any help will be appreciated,

[jQuery] [validation] Specify range with attributes

2009-04-29 Thread Daniel Sabater
Hello I am trying to specify range validation as an attribute in order to have the validation rule as close as possible to the control. Trying to avoid having to specify the rules somewhere else. I am using jquery.validation 1.5.2 I have tried the following, but without luck:

[jQuery] Cycle Plugin

2009-04-29 Thread Neff
I'm using the Cycle plugin (http://malsup.com/jquery/cycle/) to display a mini slide show but my pictures are of different sizes and some are portrait and some landscape. Is there any way of using the Cycle plugin such that pictures are centred (horizontally and vertically) in the container?

[jQuery] Recommendation for an autocomplete plugin

2009-04-29 Thread Alex Rades
Hi, I'm looking for a plugin which should be used to populate dynamically an element, which holds the recipents of a message (the classic case) I have only two requirements: 1) the plugin should be able to insert an image in the dropdown list (the avatar of each recipient) 2) It should throttle

[jQuery] Action struts 2 with jquery

2009-04-29 Thread ghassane.dh...@gmail.com
salut mon objectif : comment exécuter une action struts 2 a partir de jquery travail demande :1- remplir une form et l'envoyer au serveur pour l'enregistrer dans la base des donnés 2- exécuter action struts 2 et afficher les donnés dans data une grid jquery en général je veux faire un prototype c

[jQuery] Possible bug in selectors

2009-04-29 Thread Andu
Hi, maybe I'm missing something, but I think I found a possible bug in the jQuery 1.3.2 selectors. If it turns out that I'm wrong, please forgive me. If I'm right, I'll post this in the official bug tracker. The situation that seems buggy to me is the following. I have a table with multiple rows,

[jQuery] Toggle Elements Stops Working? Help!

2009-04-29 Thread Aeriform
http://mtschophouse.com/vero/menu/ Click on any of them, and they open up just fine, however, after this point they dont close, and you also can't open any other one, it just... stays stuck there. I had this working just fine, and in the process of working with wordpress and templating, obvious

[jQuery] run struts 2 action and display the data in a data grid jQuery

2009-04-29 Thread ghassane.dh...@gmail.com
hi my goal: 2 - run struts 2 action and display the data in a data grid jQuery in general I want to make a prototype with jQuery crud struts-2 If there is one example, document or web page email me: ghassen_73 @ hotmail.

[jQuery] Whats going on with this?

2009-04-29 Thread Aeriform
http://mtschophouse.com/vero/menu/ Click on any of them, and they open up just fine, however, after this point they dont close, and you also can't open any other one, it just... stays stuck there. I had this working just fine, and in the process of working with wordpress and templating, obvious

[jQuery] [ANN] jQuery barcode

2009-04-29 Thread apaella
Hi all, I releades a new plugin for jquery named jQuery Barcode. http://code.google.com/p/jquery-barcode/ Works with Opera, Firefox3, IE8, Prism, Gecko-based browsers Could someone review it? Thanks!

[jQuery] Toggle Elements Stops Working? Help!

2009-04-29 Thread aerif...@gmail.com
http://mtschophouse.com/vero/menu/ Click on any of them, and they open up just fine, however, after this point they dont close, and you also can't open any other one, it just... stays stuck there. I had this working just fine, and in the process of working with wordpress and templating, obviousl

[jQuery] Transition effects for ajax, I need help

2009-04-29 Thread corpodibacco
I looked everywhere, tutorial and forums and books and such, but I can't find help for my case. Everyone explains fadeIn and fadeout effects but not in conjunction with ajax. I also tried ajaxStart and ajaxStop but couldn't get them to work. So here's the deal: I call a js file from a php page. T

[jQuery] Re: Simple next/prev controls for

2009-04-29 Thread RobG
On Apr 29, 6:56 am, René wrote: > Assuming: > > > Both > Red > Blue > Green > > > Prev > Next > > Just wondering if someone has figured a simple jQuery function for > moving through the a select list (using the above type of controls). > The idea is that the Prev anchor would disappear if the

[jQuery] I need WordFilter functionality, but cumulative

2009-04-29 Thread Su
Hi, all. I've got a bit of a problem I hope is small(ish?) that I was hoping to get a hand with. I've got a layout I need to build where a user will initially be presented with a list of options that they'll then be able to whittle down by using tag-like terms. To accomplish that, I found the Wor

[jQuery] Re: Help About Using JQuery With Struts 2

2009-04-29 Thread Steven Yang
one more thing if you want to ajax submit a form you might want to take a look at a great plugin http://malsup.com/jquery/form/

[jQuery] Re: Treeview Plugin -- What are the options???

2009-04-29 Thread Jörn Zaefferer
The documentation is here: http://docs.jquery.com/Plugins/Treeview Options is here: http://docs.jquery.com/Plugins/Treeview/treeview#toptions Jörn On Wed, Apr 29, 2009 at 5:27 AM, Marv wrote: > > The documentation doesn't seem to detail the optoins and the demos use > some but without any expla

[jQuery] XMLDOM extension plugin for jQuery

2009-04-29 Thread Jeffrey
I found that appending XML string as XML node will fail in IE, so I wrote a small plugin to solve the problem, here is my post: http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/29/jquery-xmlext-plugin.aspx. Feel free to give me some feedback.

[jQuery] Re: Help About Using JQuery With Struts 2

2009-04-29 Thread Steven Yang
hi this might just be your typo but isnt url: "/AddNewClient" suppose to be url: "/AddNewClient.do" or .action? first of all, since your using ajax and it shouldnt have anything to do with form, so just to be on the save side i would change your button from type="submit" to type="button" since you

[jQuery] Re: Point of loading the google maps api file

2009-04-29 Thread Liam Potter
take the api stuff out of the document flow, and insert it with append (or a similar function). when the user clicks. heohni wrote: Hi, sorry, I may blind...

[jQuery] Re: Changing the Cell Colors in DatePicker

2009-04-29 Thread MOZ
Try $(this).css({'background-color':'', 'color':''}); http://docs.jquery.com/CSS/css#namevalue On Apr 29, 11:40 am, Code Daemon wrote: > I've tried to two different datepicker scripts and what I'm trying to > do is hilite which dates satisfy a certain condition. > > For example, when the page

[jQuery] Re: buggy .add()

2009-04-29 Thread KidsKilla .grin! wuz here
Ouch. Of course! Thank you =) 2009/4/28 MorningZ > > if "smt" is supposed to mean "something", then yes you did > > e2 = document.getElementById('xxx'), > > won't "get" this HTML > > xxx > > as the ID is not "xxx", you have "#xxx" > > xxx > > would be had with > > e2 = document.getElementById('x

[jQuery] Re: Can I use more than one JQuery code on a page at a time?

2009-04-29 Thread Liam Potter
What version of the coda slider are you using? SPWebcreations wrote: Brian thanks for the reply! However... If I take away the Jquery.js and keep the jquery.1.3.2 the coda slider will stop working and the navigation will start working... Here is the link to the actual page that has the code...

[jQuery] var set outside ajax call is not reachable

2009-04-29 Thread heohni
Hi, for some reason I don't the problem... This is part of a form check. I check the captcha code and it returns me a 0 - the test has failed. I set => hasError = true; I alert hasError and it returns "false" and therefore the next ajax function runs, which is not what I want... Why is the 'hasE

[jQuery] Re: Simple problem with createElement

2009-04-29 Thread Code Daemon
The main problem is, since the fields can be updated very quickly. There could be multiple "sending. . ." tags next to input boxes. With the fadeout, this will produce strange results if I just move it around. Also, I just tried the method you described and it only works the first time. On Apr

[jQuery] Point of loading the google maps api file

2009-04-29 Thread heohni
Hi, sorry, I may blind...

  1   2   >