[jQuery] Re: TableSorter + Validate problem

2008-12-04 Thread Jörn Zaefferer
The validate plugin method sort-of breaks the usual plugin contract. It validates always only the selected from. So changing this $(.lockcodeform).validate(); to this: $(.lockcodeform).each(function() { $(this).validate(); }); should fix it. Jörn On Thu, Dec 4, 2008 at 1:23 AM, jsrobinson

[jQuery] Re: jcarousel ie6 bug

2008-12-04 Thread hcvitto
solution found:).. On 3 Dic, 17:36, hcvitto [EMAIL PROTECTED] wrote: hi i'm using jcarousel plugin for a project. Problem is in ie6 the last image in all of my carousel doesn't show up? Any idea? Thanks Vitto

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-04 Thread Alexandre Plennevaux
yup excellent work Gilles ! On Thu, Dec 4, 2008 at 5:13 AM, web_dev123 [EMAIL PROTECTED] wrote: Hey Just checked the plugin. Looks awsome. I'll make sure to implement on my next project! Keep it up. J

[jQuery] Problem with IE 6 7

2008-12-04 Thread weide
I write a simple example works fine in firefox3,but not in IE 67. In IE 6 there is nothing in page,and IE 7 the origin content is down . The code is here: HTML HEAD titletest/title link

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-04 Thread Alexandre Plennevaux
Gilles, while browsing through the doc, there is a small 404 triggered for this link to the buttonSkin http://jquery.webunity.nl/img/demo1/buttonSkin.png Also, a question: does your plugin returns the created file name (in case of serverside rewriting, for example, to avoid file duplication ?) i

[jQuery] jquery ui tabs with cookie problem

2008-12-04 Thread chay
HI, I have set up this shopping cart using the UI tabs for a multi level vertical menu giving the user the option of browsing by category or by type. I've used the cookie option so that when a user clicks through to an option using by type for example the new page would load with by type selected

[jQuery] Confirm Delete from DB

2008-12-04 Thread james182
Okay I'm getting there, how would i combine the delnews javascript to the jQuery statement? [CODE] script language=JavaScript type=text/javascript function delnews(user_id, user_firstname){ if (confirm(Are you sure you want to delete ' + user_firstname + ')) {

[jQuery] autocomplete help

2008-12-04 Thread monk.e.boy
Hi, I have got the autocomplete from: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ And looking at the last example: http://docs.jquery.com/Plugins/Autocomplete This doesn't work in Firefox. The error I see is: value is undefined anyone know what I'm doing wrong?

[jQuery] Re: Drag/Drop + Node Connection through arrows

2008-12-04 Thread Richard D. Worth
Take a look at WriteMaps: http://writemaps.com/tour/ This was created by Scott Jehl (of Filament Group) using jQuery UI. It's slick. It's got drag-and-drop support, is zoom-scalable, and even has a print-preview. - Richard On Wed, Dec 3, 2008 at 11:46 AM, Startworld67 [EMAIL PROTECTED] wrote:

[jQuery] Re: problem with document ready function

2008-12-04 Thread firstarsbrnwhite
Think it is possible to make my menu close the previous tab when a new one is opened using Jquery? This was only having one open at a time. On Nov 25, 7:09 pm, ricardobeat [EMAIL PROTECTED] wrote: that's odd. Try using a minified (instead of packed) version of your galleria.js On Nov 25,

[jQuery] Re: IE z-index problems with superfish and jquery.cycle.plugin.

2008-12-04 Thread Bil Corry
elvisparsley wrote on 12/4/2008 1:00 AM: I have images with jquery cycle under superfish. Dropdown submenu of superfish over the images goes behind the images. I put z-index: 100; for the superfish menu and it works with firefox but not with IE. If bgiframe isn't fixing the issue, then

[jQuery] Re: How to detect a autocomplete on a input field?

2008-12-04 Thread Minus
I don't find any solution, then I do that : $('input').attr (autocomplete, off); On 24 nov, 16:50, temega [EMAIL PROTECTED] wrote: I'm creating a login box that has a Username and Password field. Their label is displayed inside the input field them self, so you see Username and Password in

[jQuery] ActiveX message for every DOM manipulation?

2008-12-04 Thread Arne-Kolja Bachstein
Hi there, I am trying to get rid of the annoying Allow execution of ActiveX control elements? (or similar, translated from German) message that comes along with a higher security setting in Internet Explorer. I receive this message every time I want to manipulate the DOM tree, for now it's only

[jQuery] strange ie7-related font behaviour - jQ/ie7 bug?

2008-12-04 Thread guvnrDOTcom
Apologies if this msg was duplicated ... had problems subbing to list thru Nabble. Bit odd this...probably I am missing something, I am new to jQuery, but maybe I've found a bug? Here's the deal. I've built a site using jQuery to show/hide some content boxes, amongst other things. In ie7,

[jQuery] Re: jquery.cycle scrollDown FX

2008-12-04 Thread Mike Alsup
Live example at:http://john1.netfirms.com/VAM/news.html Any help is appreciated. You just need to get the right style rules in there. Here's a hint: http://jquery.malsup.com/cycle/test/dec4.html

[jQuery] jcluetip problems with multiple on a page (when local = true)

2008-12-04 Thread claudes
I'm using jcluetip--multiple instances on a page--and i'm using rel to specify that it pull the data from a class. the markup and the class is the same for all elements. i didn't notice initially but the plugin pulls the data from the first class instance only and uses it for all of the

[jQuery] Re: autocomplete help

2008-12-04 Thread Jörn Zaefferer
Could you provide a testpage? Jörn On Thu, Dec 4, 2008 at 1:01 PM, monk.e.boy [EMAIL PROTECTED] wrote: Hi, I have got the autocomplete from: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ And looking at the last example: http://docs.jquery.com/Plugins/Autocomplete

[jQuery] simple selector problem :beginner();

2008-12-04 Thread tlob
I like to select every span, thats in this $(this span) sorry, simple and stupid... full function: function liCounting (){ $(#staerke1 li,#staerke2 li).each(function(liCounter){ liCounter++; //set liCounter to 1, not 0

[jQuery] Re: simple selector problem :beginner();

2008-12-04 Thread MorningZ
The second parameter is the context to search So $(this span) would be $(span, $(this)) or $(this).find(span) On Dec 4, 9:56 am, tlob [EMAIL PROTECTED] wrote: I like to select every span, thats in this $(this span) sorry, simple and stupid... full function: function liCounting

[jQuery] Re: autocomplete help

2008-12-04 Thread monk.e.boy
My JS: var data = [ {text:'Link A', url:'/page1'}, {text:'Link B', url: '/ page2'} ]; $().ready(function() { $(#names_autocomplete) .autocomplete(data, {mustMatch: true, autoFill: true, matchContains: false})

[jQuery] WordPress IMM-Glossary - request for tooltip port to JQuery

2008-12-04 Thread Adam
I am attempting to use this great plugin for WP glossary creation, which has a tooltip definition option that uses prototype. http://www.internetmarketingmonitor.org/word-press-plugins/imm-glossary-wordpress-plugin/ I have a lot of other JQ running on this site, and the prototype tooltips are

[jQuery] click function doesn't work on html element created on the fly with jquery

2008-12-04 Thread fabrice.regnier
hi to all ;) It seems that click function doesn't work on html element created on the fly with jquery. Where am i wrong ? When i click on the checkbox from paragraph P2, i got the alert. But when i click on the checkbox from paragraph P1 created on the fly (when i submit a button), then i got

[jQuery] Re: click function doesn't work on html element created on the fly with jquery

2008-12-04 Thread brian
That's because the element did not exist when you assigned the click handler. Have a look at the liveQuery plugin [1] or otherwise make sure that any newly-created elements are given notice of how the're supposed to act when you introduce them to the document. [1]

[jQuery] Re: Bug with AJAX json setting an element to a value and back to 0 when polling

2008-12-04 Thread Technocrat
Hmm over a month an no other responsesthat isn't really helpful. On Nov 14, 10:09 pm, Technocrat [EMAIL PROTECTED] wrote: That was my thought as well at first, but as I said if I change dataType to text and just alert(data); it comes across as expected.  I also manually adjusted the

[jQuery] Selecting a table cell based upon it's header?

2008-12-04 Thread Josh Rosenthal
Hi All, Hopefully this is a stupid question, and I just haven't been able to find information about it. Given a table, with headers at the top. I want to loop through the rows of the table (easy), and loop through the elements of each row (easy), and based upon the values of those elements,

[jQuery] toggle text class name and pop-up tool tip

2008-12-04 Thread ipog
Hello everybody, I'm JQuery beginner and need help on the following. I have a anchor tag with class name red. I want three things to trigger on click of anchor link 1. change class name from red to gray 2. change anchor text from hello to bye 3. pop-up tool tip (just display will do) here is

[jQuery] Select checkbox when click on row

2008-12-04 Thread Chizo
Hi people, i need a little help, i´m complete new in jquery and i am a little lost... my doubt is: how can i check/uncheck a checkbox by clicking a row like yahoo mail ,for example. my checks id is (for all) CheckAreaID and the value that they are taking ar the AreaID. Thanks and sorry for my

[jQuery] Re: Scope variables in anonymous functions?

2008-12-04 Thread Michael Geary
It's good that you're thinking in terms of making mini-plugins like your enable and disable functions. That's a really nice way to do things. If you want to simplify the code a bit, try: $.fn.disable = function() { return this.attr({ checked:false, disabled:true }); };

[jQuery] Re: click function doesn't work on html element created on the fly with jquery

2008-12-04 Thread Mike Alsup
That's because the element did not exist when you assigned the click handler. Have a look at the liveQuery plugin [1] or otherwise make sure that any newly-created elements are given notice of how the're supposed to act when you introduce them to the document.

[jQuery] Re: Selecting a table cell based upon it's header?

2008-12-04 Thread brian
Once you loop through the headers and get the index position of a particular one, you could select the nth child of the row. On Thu, Dec 4, 2008 at 11:23 AM, Josh Rosenthal [EMAIL PROTECTED] wrote: Hi All, Hopefully this is a stupid question, and I just haven't been able to find information

[jQuery] Re: strange ie7-related font behaviour - jQ/ie7 bug?

2008-12-04 Thread Jimbo M
You're seeing a known problem with IE7 (and unfortunately not fixed in the new IE8). The problem has to do with ClearType rendering of fonts. If you use a fade effect on a font rendered with ClearType, you get the ugly jagginess you are witnessing. I've whined about this to MS for a LONG time,

[jQuery] Re: Tabs - External link not working on remote tab in IE 7

2008-12-04 Thread strummer75
Is there a secret handshake in this group? I am happy to go thru fraternity hazing to learn it. :) On Dec 3, 10:38 am, strummer75 [EMAIL PROTECTED] wrote: Dear jQuery gang, I am having the following issue with a remote content tab in IE 7. Here's the scoop: Link on one page ie:

[jQuery] Re: click function doesn't work on html element created on the fly with jquery

2008-12-04 Thread fabrice.regnier
Hi, Thanx for the tip ;) I realize now it's a common problem with jquery. You talked about LiveQuery. According to you, what is the main difference with the quite new plugin LiveBind ? otherwise make sure that any newly-created elements are given notice of how the're supposed to act when

[jQuery] Can't understand why this won't work

2008-12-04 Thread Marcelo Wolfgang
Hi all, I'm developing an iphone oriented site, and I'm having some problem with the click event not firing ( and I think is mine selectors who are wrong ) can anyone help me figure out? Heres the jscript: $(#homeMenu A.colecao).click(function(e){ alert('menu'); }); $(#brindesMenu,

[jQuery] Re: Select checkbox when click on row

2008-12-04 Thread MorningZ
Got an example of the html for the tr tag? On Dec 4, 10:44 am, Chizo [EMAIL PROTECTED] wrote: Hi people, i need a little help, i´m complete new in jquery and i am a little lost... my doubt is: how can i check/uncheck a checkbox by clicking a row like yahoo mail ,for example. my checks id

[jQuery] Re: problem with document ready function

2008-12-04 Thread ricardobeat
Of course: $(document).ready(function(){ var subs = $('.menu ul ul'); subs.hide(); $('.menu ul li a').click(function(){ subs.hide(); $(this).next('ul').toggle(); }); }); On Dec 4, 10:32 am, firstarsbrnwhite [EMAIL PROTECTED] wrote: Think it is possible to

[jQuery] Re: Can I make image change only by part of it?

2008-12-04 Thread ricardobeat
That is exactly what the page I linked to does: you put a plain image of the map with the image map, then overlay transparent GIFs (with the states) on top of each other, with the map area on top. Then you show/ hide each one of them depending on the area you're hovering. Try visiting the link I

[jQuery] Changing Class using Jquery

2008-12-04 Thread WebNot
Kindly help!!! I am in a situation where I have to develop a news website, and my client wants me to display three stories from each category rest all should be hidden by default and when a user wants to view more stories he can click add a story the next story with class blocked should get

[jQuery] Mouse Out with two divs

2008-12-04 Thread Kpitn
Hi, I have a two div with two id : div id=somediv many Contenet /div div id=result/div i want to make something like that : $(#somediv).bind(mouseleave,function(){ $('#result').fadeOut(); }); $(#result).bind(mouseleave,function(){ $('#result').fadeOut(); }); But i don't want that

[jQuery] Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread machineghost
While I love most things in jQuery, one thing I don't get is replaceWith. This method returns the object you just replaced, which as far as I can see is 100% worthless, rather than the the object you're replacing it with. If you do: $.(someHtmlElement).replaceWith(divmy div/div); There is no

[jQuery] Re: siblings() not working properly in IE7

2008-12-04 Thread ricardobeat
I bet that is related to incorrect markup. Are you using tbody, thead, tfoot elements? On Dec 3, 9:47 pm, Marc [EMAIL PROTECTED] wrote: Has anyone ever seen the behavior where $('#someId').siblings() returns an empty set in IE7 while returning a non-empty set in FF3? This seems to

[jQuery] Re: Selecting a table cell based upon it's header?

2008-12-04 Thread Josh Rosenthal
Basically doing that, though using eq rather than nth-child. However, I can't seem to get eq or nth-child to take a variable. When I do var idxCol = 3; jQuery(#myHeadersth:eq(idxCol)).text(); it returns nothing, while jQuery(#myHeadersth:eq(3)).text(); returns the header Same with nth-child

[jQuery] Re: Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread Mike Alsup
While I love most things in jQuery, one thing I don't get is replaceWith.  This method returns the object you just replaced, which as far as I can see is 100% worthless, rather than the the object you're replacing it with.  If you do: $.(someHtmlElement).replaceWith(divmy div/div); 100%

[jQuery] Re: strange ie7-related font behaviour - jQ/ie7 bug?

2008-12-04 Thread Mike Alsup
I'd love to see someone find a fix for this.  It seems to crop up when the opacity is set, however removing the opacity doesn't seem to matter.  Best workaround is to avoid fading text.  If you absolutely have to, try putting a div in front of the text the same color as the background and

[jQuery] Re: Targetting .class-0 .class-1 .class-2 .class-3

2008-12-04 Thread ricardobeat
A horrible solution, but in case someone is wondering: var count = 0; var cal = $('.jquery-calendar-'+count); while (cal.length) { cal.doSomething(); cal = $('.jquery-calendar-'+(++count)) } or $('[class*=jquery-calendar-]').each(function(i){ //but this way you won't be sure the

[jQuery] Re: Mouse Out with two divs

2008-12-04 Thread Mike Alsup
I have a two div with two id : div id=somediv many Contenet /div div id=result/div i want to make something like that : $(#somediv).bind(mouseleave,function(){      $('#result').fadeOut();}); $(#result).bind(mouseleave,function(){      $('#result').fadeOut(); }); But i don't want

[jQuery] Re: Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread machineghost
Aha! Thank you, that was something I totally didn't consider (moving the replaced element somewhere else_. It still seems to me that you're more likely to want to do something (like say, hookup events) to the replaced element than you are to append the replaced element somewhere else, but at

[jQuery] selector question

2008-12-04 Thread clorentzen
Hi -- I'm trying to hide all the contents from tds within a table *except* for the first td in each tr... I don't want to hide the tds, just their contents, but I'm having trouble finding the correct selector(s) to accomplish this. So, for example, if the table is: table tr tdone/td tdtwo/td

[jQuery] Re: Selecting a table cell based upon it's header?

2008-12-04 Thread Josh Rosenthal
To answer my own question, yes, I was. jQuery(#myHeadersth:eq(+idxCol+)).text()); Thanks! On Thu, Dec 4, 2008 at 12:45 PM, Josh Rosenthal [EMAIL PROTECTED] wrote: Basically doing that, though using eq rather than nth-child. However, I can't seem to get eq or nth-child to take a variable.

[jQuery] SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread Dan G. Switzer, II
I have a weird problem I'm running into again, but haven't been able to find a fix. In FF2, when I place a div / over an input / element that currently has focus, the blinking cursor shows up through the top layer. I put together this little video to show off the problem:

[jQuery] Re: Can't understand why this won't work

2008-12-04 Thread MorningZ
Your selector $(#homeMenu A.colecao).click(function(e){ alert('menu'); }); says: give me all a tags with the class of colecao inside the object 'homeMenu' but inside the HTML you show, there is no object with the ID of homeMenu, nor are there any a tags with a class of colecao, so the

[jQuery] Re: selector question

2008-12-04 Thread MorningZ
If you don't want to manipulate the td's themselves, then you have to have the content of the td's wrapped in some sort of object so that you can show/hide it... something your example HTML doesn't have On Dec 4, 12:56 pm, clorentzen [EMAIL PROTECTED] wrote: Hi -- I'm trying to hide all the

[jQuery] Re: selector question

2008-12-04 Thread Charlie Griefer
On Thu, Dec 4, 2008 at 9:56 AM, clorentzen [EMAIL PROTECTED] wrote: I'm trying to hide all the contents from tds within a table *except* for the first td in each tr... I don't want to hide the tds, just their contents, but I'm having trouble finding the correct selector(s) to accomplish

[jQuery] Re: Can't understand why this won't work

2008-12-04 Thread Marcelo Wolfgang
Hi, sorry my mistake, I've pasted the wrong part of the code :/ this is the relevant info: div id="homeMenu" a href="" class="colecao"img src="" alt="Conhea a coleo da Bottero" //a a href="" class="brindes"img src="" alt="Baixe wallpapers para o seu iPhone" //a a href="" class="rep"img

[jQuery] Re: selector question

2008-12-04 Thread Charlie Griefer
On Thu, Dec 4, 2008 at 10:28 AM, Charlie Griefer [EMAIL PROTECTED]wrote: On Thu, Dec 4, 2008 at 9:56 AM, clorentzen [EMAIL PROTECTED]wrote: I'm trying to hide all the contents from tds within a table *except* for the first td in each tr... I don't want to hide the tds, just their contents,

[jQuery] jQuery works locally, but not online

2008-12-04 Thread FireloopCreative
Hi, I've got 2 jQuery features in 2 pages of a site I'm building. One is a show/hide list that's working perfectly, but on another page I've got a carousel image slide feature that's working when viewed locally but not when it's uploaded to our test server, which I can't understand. I've tried

[jQuery] jquery + struts action

2008-12-04 Thread Marta Figueiredo
Hi I need to call an action using jquery.. The following piece of code works correctly for it is calling and executing code the correct struts action. However.. the action itseft is not being correcty forwarded. I don't think that the problem is the action, for if I call it in other ways the

[jQuery] Re: Radio Buttons - checking a option by value.

2008-12-04 Thread adita
alo. maybe like this: if ($(input[name='dita']:checked).val() == 0) is that what you mean? On Nov 11, 12:02 pm, cchurch [EMAIL PROTECTED] wrote: I'm trying to work out how to a check a radio button of a particular group based on it's value. Here's the html input type=radio

[jQuery] Re: Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread Michael Geary
Don't forget that you don't have to do everything with chaining. Simply grab a reference to any jQuery object or DOM element you want to use later. var $myDiv = $('divmy div/div'); $(someHtmlElement).replaceWith($myDiv); $myDiv.click( function() { alert( $(this).html() ); } ); -Mike

[jQuery] Re: autocomplete help

2008-12-04 Thread Jörn Zaefferer
Take a look at the source of this demo: http://dev.jquery.com/view/trunk/plugins/autocomplete/demo/json.html That should be very close to what you're looking for. Jörn On Thu, Dec 4, 2008 at 4:13 PM, monk.e.boy [EMAIL PROTECTED] wrote: My JS: var data = [ {text:'Link A', url:'/page1'},

[jQuery] Re: jquery + struts action

2008-12-04 Thread Eric Martin
Marta - what exactly are you trying to do? By using an Ajax call, you are going to get a response that should be the output of the forwarded action. $.ajax({ url: '/listReports.do', type:'post', cache: false, dataType:'xml', success: function (resp) { // do something with resp }

[jQuery] Re: selector question

2008-12-04 Thread clorentzen
Thanks! The lack of something else wrapping each tds content was indeed the problem. On Dec 4, 1:34 pm, Charlie Griefer [EMAIL PROTECTED] wrote: On Thu, Dec 4, 2008 at 10:28 AM, Charlie Griefer [EMAIL PROTECTED]wrote: On Thu, Dec 4, 2008 at 9:56 AM, clorentzen [EMAIL PROTECTED]wrote:

[jQuery] Re: jQuery works locally, but not online

2008-12-04 Thread MorningZ
Looking at the HTML you have inside the ul that is the carousel, you have like img src=images/home/featuredProject-1.jpg / meaning according the the path it would look at for the image would be http://www.fireloopcreative.co.uk/clients/new_fireloop/images/home/featuredProject-1.jpg which

[jQuery] Re: Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread machineghost
For some reason I didn't think that would work, because of issues with $myDiv not being on the page when it's created (and events only being hook-up-able to on-page elements). But after testing your example I realized that jQuery does keep it's references straight even when you create the

[jQuery] Re: jQuery works locally, but not online

2008-12-04 Thread Michael Geary
Your #featuredProject div has a width of 0. I don't know if that is the only problem, but it's the first thing I noticed while poking around the page in Firebug. On another issue, do you not want people to be able to contact you? :-) Your phone number and email address are almost invisible. The

[jQuery] Re: Expanding div over an image on mouse-over

2008-12-04 Thread Robert K
*cough* bump! :) On Dec 3, 1:43 pm, Robert K [EMAIL PROTECTED] wrote: I want to add a description/info to some images, I came across this really cool effect that I think is created usingMooTools, just wondering if it is possible to replicate in jQuery? Half way down the page

[jQuery] SimpleModal v1.2 released

2008-12-04 Thread Eric Martin
A new version of SimpleModal has been released. It contains a few improvements and fixes for browser related issues. There are some new options and a few that have been deprecated, so make sure to check out the project homepage for a list changes and upgrade details. Homepage:

[jQuery] InnerFade bug

2008-12-04 Thread Austin S.
I'm using the InnerFade plugin for cycling through an underorderd list, works great until I resize my window to get a horizontal scroll bar and scroll to the right, the content within the InnerFade gets cut off. Not sure how to fix this? http://s54419.gridserver.com/

[jQuery] livequery not acting on radgrid ajax row elements

2008-12-04 Thread kevin mckinley
I have a livequery function that doesn't run after elements are added with an AJAX RadGrid control. the elements are image thumbnails ie: img class=thumb/ $(function() { $(.thumb).livequery(function() { $(this) .resizeToScale({ width: 50, height: 50 }); }); }); If

[jQuery] Re: problem with document ready function

2008-12-04 Thread firstarsbrnwhite
ricardo your the man. thank you so much.

[jQuery] Re: SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread ricardobeat
Can't reproduce it. Have you played with the z-indexes? On Dec 4, 4:02 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: I have a weird problem I'm running into again, but haven't been able to find a fix. In FF2, when I place a div / over an input / element that currently has focus, the

[jQuery] Re: SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread Josh Nathanson
There are some issues in FF with cursors and absolute positioned divs. Might've been fixed in FF3. Another one is the cursor won't show up in a text field within an absolute positioned div that is in a layer above the document body. If you do a google search on firebox cursor bug or the like

[jQuery] Re: How to animate frameset properties?

2008-12-04 Thread andriscs
I tried it, believe me. :) Yet I had to use frames due to close deadlines as divs that I used were placed abnormally everwhere depending on which browser were presented in. I have to create a navigation side on the left and a content area on the right. The menu should always be visible while the

[jQuery] Re: SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread Dan Switzer
No matter what I set the z-index to, it always blinks through the layer. Here's a very straightforward example that shows the issue in every version of FF2 I have: http://www.pengoworks.com/workshop/bugs/ff2_blink_through.htm -Dan Can't reproduce it. Have you played with the z-indexes? On

[jQuery] Re: Stupid question: what is the return value of replaceWith good for?

2008-12-04 Thread ricardobeat
You can also do the opposite: $('divmy div/div').replaceAll (someHtmlElement).somethingWithTheNewElement() - ricardo On Dec 4, 5:02 pm, machineghost [EMAIL PROTECTED] wrote: For some reason I didn't think that would work, because of issues with $myDiv not being on the page when it's created

[jQuery] Re: How to animate frameset properties?

2008-12-04 Thread Jeffrey Kretz
I'm going to toss this out there, though you may not want the effort. You could sort of roll your own animation that uses the attribute, rather than the CSS. It would involve a setTimeout, and use the $(el).attr('cols',val); Again, that's a lot of plumbing to tackle, but any attribute that can

[jQuery] Re: Changing Class using Jquery

2008-12-04 Thread Paul Mills
Here is some basic jQuery that does what you want. First hide all li elements with class=blocked Then add click handler to a elements with class=add to locate the first hidden li within the Category and to remove class=blocked and show the li Add similar click handler for remove a element.

[jQuery] Re: Select checkbox when click on row

2008-12-04 Thread Karl Swedberg
off the top of my head: $('tr').click(function(event) { if (event.target.type !== 'checkbox') { $(':checkbox', this).click(); } }); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 4, 2008, at 10:44 AM, Chizo wrote: Hi people, i need a little

[jQuery] div hides ok, but doesn't show up again.

2008-12-04 Thread Polskaya
Hi all, I am trying to load content from another file in several divs on one page. If i use this script: var ct=0; $(.container).each(function () { var id=this.id; $([id=+id+]).append(div id=pic+ct+img src='../grafix/ spinner.gif'd/div);//alert('r'); $(#pic+ct).hide()

[jQuery] Re: Expanding div over an image on mouse-over

2008-12-04 Thread ricardobeat
One way to do it: http://jsbin.com/owamu/ (yeah I went crazy on the math :D) - ricardo On Dec 4, 5:24 pm, Robert K [EMAIL PROTECTED] wrote: *cough* bump! :) On Dec 3, 1:43 pm, Robert K [EMAIL PROTECTED] wrote: I want to add a description/info to some images, I came across this really

[jQuery] Re: jquery.cycle scrollDown FX

2008-12-04 Thread web_dev123
You just need to get the right style rules in there.  Here's a hint: http://jquery.malsup.com/cycle/test/dec4.html Wow that was easy! Thanks again Mike!

[jQuery] Re: SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread Dan Switzer
Josh, There are some issues in FF with cursors and absolute positioned divs. Might've been fixed in FF3. Another one is the cursor won't show up in a text field within an absolute positioned div that is in a layer above the document body. If you do a google search on firebox cursor bug or

[jQuery] newbie: making a sortable table by some hidden value

2008-12-04 Thread pantagruel
Hi, I would like to sort a table a number of table rows by values inside hidden form elements inside cells of the table. These form elements can represent different 'datatypes' (I put datatypes in quotes because the types my application defines aren't necessarily always the classic types one

[jQuery] Re: Confirm Delete from DB

2008-12-04 Thread james182
I really need to get this fixed please help.. am new to jquery. james182 wrote: Okay I'm getting there, how would i combine the delnews javascript to the jQuery statement? [CODE] script language=JavaScript type=text/javascript function delnews(user_id, user_firstname){

[jQuery] Re: problem with document ready function

2008-12-04 Thread firstarsbrnwhite
works great but now with the subs.hide() the toggle on the category no longer works :(

[jQuery] Re: Simple Selector Question -- Context

2008-12-04 Thread Joe
Liam, Right, but that defeats the point of caching the jQuery object that was created by: var pError = $('p.error'); Since I'm just calling it again with a different selector, namely, the :visible one. On Dec 3, 9:17 am, Liam Potter [EMAIL PROTECTED] wrote: it would be this

[jQuery] Re: Simple Selector Question -- Context

2008-12-04 Thread Joe
Thanks Ricardo, looks good. On Dec 3, 10:14 am, ricardobeat [EMAIL PROTECTED] wrote: Or pError.filter(':visible'). By using 'pError' as a context, you are looking for it's children, not the elements themselves. - ricardo On Dec 3, 1:17 pm, Liam Potter [EMAIL PROTECTED] wrote: it would

[jQuery] Re: SOT: Blinking cursor in Firefox 2 bleeds through divs...

2008-12-04 Thread Karl Swedberg
Hi Dan, I wish I could give you some good news, but instead I can only commiserate. FF 2 had all sorts of problems like that. Try having an absolutely positioned div overlapping the scrollbar of a div with overflow: scroll. Ugly. I even recall seeing a cursor in one tab's textarea

[jQuery] Re: div hides ok, but doesn't show up again.

2008-12-04 Thread Max
Try putting some logging in the .load callback, on the ct variable...make sure it's getting bound correctly. On Dec 4, 2:19 pm, Polskaya [EMAIL PROTECTED] wrote: Hi all, I am trying to load content from another file in several divs on one page. If i use this script: var ct=0;

[jQuery] Re: jEditable - simple datepicker

2008-12-04 Thread Ethan
Any updates on this plugin, I have tried to make it myself, I'm almost there, but maybe someone can just finish the job!!! :))

[jQuery] Electricity - Make It, Dont Buy It.

2008-12-04 Thread yingwen2...@gmail.com
Electricity - Make It, Dont Buy It. http://dispaying.com/electricity-make-it-dont-buy-it--s-157.html Build A Wind Generator http://dispaying.com/build-wind-generator-s-158.html Simple Water Car http://dispaying.com/simple-water-car-s-156.html Create electricity at home - renewable energy.

[jQuery] using jquery to implement google maps on phpbb3

2008-12-04 Thread Bob
I have a small phpbb3 bulletin board and I'm trying to implement google maps via a mod/bb code solution. I have got it working where I can embed a single map. But unfortunately, when a 2nd map is added to a thread, the first one disappears. I've isolated this as having to do with the div tag id

[jQuery] Object Oriented Form Handling

2008-12-04 Thread Will
Does anyone know of a way to use class like objects in event handling using jQuery? For Example, input type='button' value='Button' onclick='Record.show()' / where .show() is a method of the Record object. This would be really cool to be able to reuse the method name .show() but with

[jQuery] Functions and variables

2008-12-04 Thread Will
I'm sure this is dealt with somewhere in the jQuery tutorials but I have not been able to find it. I'm new to jQuery and used to working with functions and variables so that I can create reusable code and not have to hard code every event that could happen. This is pretty much basic

[jQuery] using jquery to implement google maps on phpbb3

2008-12-04 Thread Bob
I have a small phpbb3 bulletin board and I'm trying to implement google maps via a mod/bb code solution. I have got it working where I can embed a single map. But unfortunately, when a 2nd map is added to a thread, the first one disappears. I've isolated this as having to do with the div tag id

[jQuery] Re: Functions and variables

2008-12-04 Thread Max
Sorry...this question is a little ambiguous to me. Can you be more specific or give an example/use case? I think you will have to hard code every event, because otherwise there's no logic dictating what happens when, say, you click something. As for defining actual functions and reusable

[jQuery] Re: Object Oriented Form Handling

2008-12-04 Thread Michael Geary
As with your other question about functions and variables, could you give a specific example of some jQuery code that doesn't look good to you, and then we can talk about how to clean it up? One thing to keep in mind is that jQuery focuses pretty much on DOM manipulation. It doesn't provide much

[jQuery] Re: Object Oriented Form Handling

2008-12-04 Thread Max
This sort of goes against the grain of what jQuery is about -- UJS (unobtrusive javascript). I think what you're normally do (or at least, what I'd do; I'm not a huge buff on passing validation) is add a record_id property to the input, then have like input type='button' value='Button'

[jQuery] Jquery UI Tabs

2008-12-04 Thread ramiro77
http://d40541.u24.gazungle.com/portfolio.php working for me fine in FF .. but not in IE7 ... any suggestions ? I am using the AJAX call method instead of DIVS as well. thank you !!!

[jQuery] Re: Functions and variables

2008-12-04 Thread Michael Geary
jQuery isn't a separate language with its own rules. It's still JavaScript code, just like any other JavaScript code. Functions, variables, reusable code, those are all good practice, and none of it changes because you're using jQuery. Could you give a specific example of some jQuery code that

  1   2   >