[jQuery] Re: Click Links in the Nnavigation Bar

2009-02-01 Thread Pedram
Thanks Karl , You are Right , I appreciate it , thank you again . You are always the solver On Jan 31, 11:54 am, Karl Swedberg k...@englishrules.com wrote: Hi Pedram, I agree with Nic. Especially if you're only dealing with 4 elements,   binding directly on them seems like the most sensible

[jQuery] Re: Click Links in the Nnavigation Bar

2009-02-01 Thread Pedram
I just had some Doubt , the performance is great On Jan 31, 11:54 am, Karl Swedberg k...@englishrules.com wrote: Hi Pedram, I agree with Nic. Especially if you're only dealing with 4 elements,   binding directly on them seems like the most sensible solution. Are you noticing performance

[jQuery] Re: Click Links in the Nnavigation Bar

2009-02-01 Thread Pedram
I have another tiny question $(Ul li a), $(ul a), $(a,$(ul)) which one has the great performance !!? On Feb 1, 12:02 am, Pedram pedram...@gmail.com wrote: I just had some Doubt , the performance is great On Jan 31, 11:54 am, Karl Swedberg k...@englishrules.com wrote: Hi Pedram, I

[jQuery] 'JQuery' tag is not working at all

2009-02-01 Thread Bluesapphire
Hi! Iam using JQuery 1.3. $ tag is working fine. But when I try to use jquery plugin'jqGrid'. It gives error. As I think, this plugin is using 'JQuery' and my system is not recognising this tag [JQuery]. Following is the error, generated by Firebug. jQuery(modwin).jqDrag is not a function

[jQuery] Re: Damn ie7!

2009-02-01 Thread Klaus Hartl
And for some common CSS bugs check: http://positioniseverything.net/ --Klaus On 1 Feb., 00:31, Karl Swedberg k...@englishrules.com wrote: On Jan 30, 2009, at 5:06 PM, david.0pl...@gmail.com wrote: Ok, thank you very much i got this! Also, just to know is there any site/books that

[jQuery] Re: 'JQuery' tag is not working at all

2009-02-01 Thread Bluesapphire
Hi! This is continuation of my previous message. I also get following error in FireBug. JQuery(document).ready(function(){ JQuery is not defined http://localhost/main/vibersol/shipping/admin/country.php Line 132 Thanks On Feb 1, 1:32 pm, Bluesapphire michealg...@gmail.com

[jQuery] UNSUBSCRIBE

2009-02-01 Thread Christoffer

[jQuery] Re: 'JQuery' tag is not working at all

2009-02-01 Thread seasoup
it should be jQuery little 'j', capital 'Q', little 'uery Don't you just hate those typos? On Feb 1, 12:53 am, Bluesapphire michealg...@gmail.com wrote: Hi!    This is continuation of my previous message. I also get following error in FireBug.

[jQuery] Image rollover effects in Superfish menu

2009-02-01 Thread Simbarashe
We have built our site using superfish to handle the main navigation menu. The top level elements are images and for selecting the 'current section image, we use the codebehind to set the different image states, and a rollover function in the client side to handle the image rollovers. That gives

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread thertze...@gmail.com
It's being ran from perl, so when perl is parsing the print statement, it thinks $~whatever is a perl variable. Which is strange, because normally use strict; will bark at you, but instead perl finds a way to find out what $~whatever is. Its kinda strange, so I have to escape them server side,

[jQuery] Re: Changing Tooltip style

2009-02-01 Thread Matt
Your tooltip text will actually show up within an h3 tag wrapped inside the #tooltip div. Keep your #tooltip styles the way they were (without the font-size property), and set up a new one like this: #tooltip h3 { font: normal 10px Verdana; margin: 0; padding: 6px 2px } (or

[jQuery] Re: Need help validating a dropdown list

2009-02-01 Thread Jörn Zaefferer
Dropdowns are supported just fine. Just remove the value attribute from the select one option and add a required rule for the field. See also http://jquery.bassistance.de/validate/demo/radio-checkbox-select-demo.html Jörn On Sat, Jan 31, 2009 at 7:59 PM, Kathryn kathry...@gmail.com wrote: Hi

[jQuery] Re: BlockUI: multiple blocks

2009-02-01 Thread Mike Alsup
data in the table. What I'd really like to do is block user input on the entire page but only draw the overlay and message on the table portion. What's the best way to do this? Can I block the div as I am now and still call $.blockUI with no message in order to block input to the entire page

[jQuery] about :not(:last)

2009-02-01 Thread Garito
Hi! Please, consider this code: $.fn.url2 = function(absoluta) { var slots = $(this).parents('dl:not(:last)').map(function() { return $(.Texto:first, $(this)).text(); }); var slots2 = $(this).parents('dl').map(function() {

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread Ricardo Tomasi
are you putting that code inside $(document).ready? if ( \$(e.target).is('.btn px') ) is checking if the clicked element is a px/ element inside .btn, that condition will never be satisfied, will it? On Feb 1, 12:38 pm, thertze...@gmail.com thertze...@gmail.com wrote: It's being ran from perl,

[jQuery] Re: Problem with dynamic XML

2009-02-01 Thread Balazs Endresz
It's easy, see this thread: http://groups.google.com/group/jquery-en/browse_frm/thread/95718c9aab2c7483/af37adcb54b816c3?lnk=gstq=parsexml#af37adcb54b816c3 On Feb 1, 5:56 am, pp...@fragrance-world.net fragrance2...@gmail.com wrote: I have the following code: var cartXml =

[jQuery] Re: Superfish Dropdown BG Problem

2009-02-01 Thread levine....@gmail.com
Thanks for the heads up on turning off the call. However, I still don't have any idea of where to put the code that Joel is talking about. Does this go into the Rhuk_milkyway css file??? Regards, Ron On Feb 1, 2:22 am, bklyn2cali s...@mediajelly.com wrote: Joel, I've got this working now,

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread James
@Mike Thanks. But it should have been working with the default code since dropdown 2 was working - dropdown 3 used the exact same principle. There is definitely something going on different between FF and IE. Question - Could the existence of single quotes within the JSON data throw off JQuery?

[jQuery] Problem with dynamic XML

2009-02-01 Thread pp...@fragrance-world.net
I have the following code: var cartXml = $(datacarttotalsitems33/items/carttotals/ data); alert(cartXml.find(items).text()); this will spit out 33 in both safari and firefox However in IE it does not produce anything Here is what I have figured out so far: if I change to the following:

[jQuery] Re: $(this).ready with images

2009-02-01 Thread Balazs Endresz
Unfortunately it's not that simple, thanks to IE: http://groups.google.com/group/jquery-dev/browse_thread/thread/24b107e84adeaaee/ http://dev.jquery.com/ticket/3930 On Jan 31, 4:20 pm, frederik.r...@gmail.com frederik.r...@gmail.com wrote: Ok! That's great! Thanks for the explanation!

[jQuery] Re: Superfish Dropdown BG Problem

2009-02-01 Thread bklyn2cali
Joel, I've got this working now, thank you. One last issue: the SuperSubs plugin works only on the first sub-sub- nav. I'm not sure why. http://www.stcyril.net/site/ It seems like there is some overflow issue since the background repeats all the way to the edge of the border. I'm so close to

[jQuery] Clickable slideshow not working as expected.

2009-02-01 Thread atomk
Using the hover function, I'm showing a before/after version of a photo (I have 2 photos stacked using z-index): $(function() { $('.current img.after').hover( function() { $(this).animate({opacity: 0});

[jQuery] Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
Ok, I'm probably missing the obvious here, but I'm having a very difficult time understanding how to use a jQuery UI dialog with a simple theme. First off, I began with the following code: html head script src=js/jquery.js/script script src=js/ui/ui.core.js/script script

[jQuery] Guidelines on Graceful Degradation When JavaScript Disabled?

2009-02-01 Thread WebWiz
I'm new to jQuery so I apologize if this is a dumb question. I'd like to take advantage of the visually interesting things jQuery can do. But I'm bumping into a small but significant number of end users who either have JavaScript disabled or are running old browsers with bad JS support. Since I

[jQuery] prototip-like script for jQuery

2009-02-01 Thread maryspt
Hi, is there any jQuery script similar to ProtoTip ? I need a script that shows the hint which doesn't move when the mouse is moved and doesn't disappear if the mouse is over the shown hint...

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread James
Update: It doesn't seem to have anything to do with single quotes or commas, for that matter, inside the JSON data. Now HERE'S something to make you scratch your head: I have now put the complete data file back up in the external file ('CANADA_3.js') and I have ALSO put the EXACT same data file

[jQuery] Re: Superfish Dropdown BG Problem

2009-02-01 Thread Mickster
Ron, That code goes into whatever file you have your superfish css in - normally superfish.css. In there you will probably find the line: .sf-menu li { background: #BDD2FF url('../images/ normal_bg.png') repeat-x 0 0; } or similar - at least the .sf-menu li {} should be there. Prepend that line

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread phicarre
Hide it with autoOpen:false, style=display: none is unnecessary Think jQuery, not Javascript ! On 1 fév, 16:56, Raymond Camden rcam...@gmail.com wrote: Ok, I'm probably missing the obvious here, but I'm having a very difficult time understanding how to use a jQuery UI dialog with a simple

[jQuery] Re: Superfish Dropdown BG Problem

2009-02-01 Thread levine....@gmail.com
Also, where do I find the font color for the menu? I have looked in the RM css files as well as the SF css files and can't seem to make out where it is. Thanks again, Ron On Feb 1, 7:59 am, levine@gmail.com levine@gmail.com wrote: Thanks for the heads up on turning off the call.

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread thertze...@gmail.com
what? That statement checks to see if the element clicked has the class of .btn px, I dont know what your saying, the statement there does work correctly, its \$(this).css({ backgroundColor:color }); that isnt modifying the css, thats where my problems are. On Feb 1, 9:29 am, Ricardo Tomasi

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread James
Update2: The problematic page is still up as promised for discussion purposes, but I have a breakthrough to report. I never would have suspected this in a million years, but I discovered it after following through with my same line of logic regarding the JSON data causing a problem. I

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Richard D. Worth
On Sun, Feb 1, 2009 at 11:57 AM, phicarre gam...@bluewin.ch wrote: Hide it with autoOpen:false, style=display: none is unnecessary Think jQuery, not Javascript ! Actually, autoOpen: false won't hide it if it's not hidden. It simply won't automatically open it when the .dialog() init is

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread James
...I must add and point out that the EXACT SAME DATA exists in the external file and the inline var. So it is ALSO very strange that the accents as mentioned display correctly in the first example (pulling from the inline var) and don't in the second example (pulling from the external file). I

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Richard D. Worth
On Sun, Feb 1, 2009 at 10:56 AM, Raymond Camden rcam...@gmail.com wrote: Ok, so no big deal, but why didn't the basic demo mention this? I'm still a bit rough w/ CSS so if I had not found this on some other demo, I would have been out of luck. This is valuable feedback. Thank you. We want

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Richard D. Worth
On Sun, Feb 1, 2009 at 12:24 PM, Richard D. Worth rdwo...@gmail.com wrote: I'm pretty frustrated. I've looked around at the demos and docs, but I can't seem to find a very simple _minimal_ example. Any help please? I'm sorry for your frustration. Here are what we feel are some minimal

[jQuery] not selector

2009-02-01 Thread Javier Martinez Fernandez
I'm having some problems using the not selector on my jquery code. I have elements that have one classname first and only one of them has a second classname second (that is used in many other elements). I want to select the elements that have the first but not the second. The selector I

[jQuery] Re: Clickable slideshow not working as expected.

2009-02-01 Thread frederik.r...@gmail.com
When do you call the hover-function? On $(document).ready? To me it looks like the hover won't work because it is never applied to the next photo (as it isn't a current-class when loaded). Maybe it should go like this: function addMyFunctionality() { $('.current

[jQuery] Re: Click Links in the Nnavigation Bar

2009-02-01 Thread Karl Swedberg
On Feb 1, 2009, at 3:06 AM, Pedram wrote: I have another tiny question $(Ul li a), $(ul a), $(a,$(ul)) which one has the great performance !!? I would go with either $('ul a') or $('a', 'ul'), but $('ul a') seems more readable to me, as it follows the CSS syntax. Since it's not

[jQuery] Re: prototip-like script for jQuery

2009-02-01 Thread Richard D. Worth
Search plugins.jquery.com for 'tooltip' http://plugins.jquery.com/search/node/tooltip+type%3Aproject_project Also, you'll find some on this page http://wiki.jqueryui.com/Essential-Controls-List#tooltip - Richard On Sun, Feb 1, 2009 at 11:00 AM, maryspt miga...@gmail.com wrote: Hi, is there

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
On Feb 1, 11:24 am, Richard D. Worth rdwo...@gmail.com wrote: All ui-{widgetname} classes are added by UI plugins themselves. So if you're ever creating markup that contains them, that's not the intended use. I guess we need to make that more clear on this page. Right away I see that the

[jQuery] Re: Superfish Dropdown BG Problem

2009-02-01 Thread bklyn2cali
Joel or anyone else, I have one last problem. The SuperSubs plugin works only on the first sub-sub- nav. I'm not sure why. Take a look here and see the second sub nav's display: http://www.stcyril.net/site/ It seems like there is some overflow issue since the background repeats all the way to

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread brian
On Sun, Feb 1, 2009 at 12:09 PM, thertze...@gmail.com thertze...@gmail.com wrote: what? That statement checks to see if the element clicked has the class of .btn px, I dont know what your saying, the statement there does work correctly, its \$(this).css({ backgroundColor:color }); that

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Richard D. Worth
On Sun, Feb 1, 2009 at 1:11 PM, Raymond Camden rcam...@gmail.com wrote: On Feb 1, 11:24 am, Richard D. Worth rdwo...@gmail.com wrote: All ui-{widgetname} classes are added by UI plugins themselves. So if you're ever creating markup that contains them, that's not the intended use. I

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread thertze...@gmail.com
Right but you can have to classes defined to one element, and thats what is being done here. The statement does validate nonetheless, but rather why this.css doesn't correctly reassign the background is what im unsure of. On Feb 1, 12:20 pm, brian bally.z...@gmail.com wrote: On Sun, Feb 1, 2009

[jQuery] Re: getElementById with ajax

2009-02-01 Thread Manowar721
efet, I haven't messed with .asp. Only ever use .php, so am not too sure how this will work for you. But I thought I would provide this example code below to illustrate how it might work. After you read through the links gmacgregor gave you, perhaps you can tweak it and get it to work to your

[jQuery] fade animations for graphics next to eachother; issues

2009-02-01 Thread Rene Veerman
Hi. I've got several graphics next to eachother that i've set to opacity=0.4; on mouseover i want them to light up to opacity = 1. So far so good, i have onMouseOver and onMouseOut events that get called, and i thought i'd just add animate() calls and i'd be fine.. Turns out that aint so..

[jQuery] Re: Superfish IE6

2009-02-01 Thread Steven Wright
I have solved the problem listed below by adding a width to the secondary UL Ul.dropdown li ul { display: none; position: absolute; top: 2em; left: 0; width:12em; } -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Guidelines on Graceful Degradation When JavaScript Disabled?

2009-02-01 Thread Klaus Hartl
It's as simple as that: in the first step build a page completely without JavaScript so that everything works fine. Then add JavaScript/ jQuery to the game and improve the user experience.This concept is also referred to as Progressive Enhancement. You will find quite some information about it on

[jQuery] Re: not selector

2009-02-01 Thread Karl Swedberg
Try $('div.first:not(.second)') and $('li:not(.jq-first)') (without tag names in the :not() selector) --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 1, 2009, at 12:40 PM, Javier Martinez Fernandez wrote: I'm having some problems using the not

[jQuery] Vertical menu for Newbees

2009-02-01 Thread UsH
Hello, After some not so nice experiences with the DW-Spry-Menus I'd like to test these ones. As a Newbee I wonder how I can make this vertical menu with the flyouts going to the left side instead to the right as the vertical menu will take place at the right side and so flyout to the left. Am

[jQuery] style

2009-02-01 Thread stylewe...@gmail.com
I am looking for someone to have a little fun with. Something to look foward to every thursday night to relieve some stress from work. I don't want to know about your crazy ex-girlfriend or your crappy boss. I just want to have some fun. http://www.styleweb.co.cc Im trashmouth5

[jQuery] click Event not working on first binded element on IE after one click

2009-02-01 Thread shahku...@gmail.com
So, I am implementing a page on which words that have hints associated in the DB are binded with the click event to show the Hint. Initially, I go through and replace the words with html that goes span class=hintword/span So, then I bind the hint class with the click event,

[jQuery] Reload Javascript file

2009-02-01 Thread Guido
Hi everybody, i wrap an div with the id=content from figurative.php with ajax on load it into my index.php it looks then index.php#figurative But i have a problem with it, because the figurative.php load pictures from a folder and i will use the fancybox to show the pictures. the problem is,

[jQuery] Re: $(this).ready with images

2009-02-01 Thread Ricardo Tomasi
$('#image').bind('onreadystatechange load', function(){ if (this.complete) $(this).height()...etc }); On Feb 1, 12:13 pm, Balazs Endresz balazs.endr...@gmail.com wrote: Unfortunately it's not that simple, thanks to

[jQuery] Re: fade animations for graphics next to eachother; issues

2009-02-01 Thread Rene Veerman
Solved it; don't put the graphics in a table cell to arrange them, use float:left; Then it works as expected with animate() calls in onmouseover and onmouseout Rene Veerman wrote: Hi. I've got several graphics next to eachother that i've set to opacity=0.4; on mouseover i want them to

[jQuery] Re: fade animations for graphics next to eachother; issues

2009-02-01 Thread Mike Alsup
have a look athttp://82.170.249.144/mediaBeez/index.php login: admin password: test23 Where is your script that does the animation?

[jQuery] Re: about :not(:last)

2009-02-01 Thread Ricardo Tomasi
http://jquery.nodnod.net/cases/85 Parece ok aqui. Pode ser alguma outra coisa na tua página, não dá pra saber sem ver o html. Seems to work fine here. Could you post a complete test page showing this issue? - ricardo On Feb 1, 1:25 pm, Garito gar...@gmail.com wrote: Hi! Please,

[jQuery] Re: Selecting parent id

2009-02-01 Thread Manowar721
var getParent = function(){ myparentID = $(this).parent().parent().parent().attr(id); parentID = My table ID is: + myparentID; alert (parentID); }; $(td).bind(click, getParent); Hope that helps, Manowar721 On Jan 31, 3:01 pm, Chrille christoffer...@gmail.com wrote: Hi everyone, I

[jQuery] Re: jquery and minify

2009-02-01 Thread Sam Sherlock
Thanks Ariel. I have found out that http://code.google.com/p/minify/ retains comments when that are like /*! */ also I have seen that sometimes jQuery has this style of comment already 2009/1/31 Ariel Flesler afles...@gmail.com You should keep the headers somewhere, preferably close to the

[jQuery] drag/drop replace text/element

2009-02-01 Thread coyote...@msn.com
I'm trying to drag and drop between lists. I have the simple drag and drop down, but I want to add something else... I want drop a list item to another list item and replace the text or the drop zone. For example. I have two lists: ul id=sortable1 class='droptrue' li id=whatever 1

[jQuery] Re: toggle checkbox when clicking td

2009-02-01 Thread Slafs
I'm one step closer ;]. I'm traversing from tr not from td. And it seems to work fine except that now the checkbox itself doesn't have the ability to check or uncheck so i've tried to add some more code ([1]) but then I have to doublecklick it to check or unckeck =/ weird... my code: ---

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
Just a quick last note here (before I move to the UI forum for future UI problems). I switched over to 1.6rc6, and everything worked a heck a lot better. Thanks for the help all. On Feb 1, 12:41 pm, Richard D. Worth rdwo...@gmail.com wrote: On Sun, Feb 1, 2009 at 1:11 PM, Raymond Camden

[jQuery] Re: drag/drop replace text/element

2009-02-01 Thread Richard D. Worth
We'd love to help you over on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Sun, Feb 1, 2009 at 3:15 PM, coyote...@msn.com webmas...@fantasyplaymakers.com wrote: I'm trying to drag and drop between lists. I have the simple drag and drop down, but I want

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread Mike Nichols
have you attached fiddler and firebug to see what it happening? On Feb 1, 10:14 am, James james.tilb...@gmail.com wrote: ...I must add and point out that the EXACT SAME DATA exists in the external file and the inline var. So it is ALSO very strange that the accents as mentioned display

[jQuery] Odd SuperSubs Issue

2009-02-01 Thread bklyn2cali
Joel or anyone else, The SuperSubs plugin works properly only on the first sub-sub-nav. I'm not sure why. Take a look here and see the second sub nav's display (in the top pill nav rollover Campus Life and then Student Athletics): http://www.stcyril.net/site/ The li tag seems like it is ignored

[jQuery] Re: toggle checkbox when clicking td

2009-02-01 Thread Dave Methvin
now the checkbox itself doesn't have the ability to check or uncheck What's happening is that when you click the checkbox directly, it changes the state of the checkbox. But, the click event then bubbles to the tr, where the handler changes it (back)! There are several different ways to handle

[jQuery] pass variable from button to jquery

2009-02-01 Thread ktpmm5
I am displaying a bunch of data from a mysql database, shown below. After the data is displayed, I put a button for each line of data. When a user clicks the button, I call the load function. I am trying to figure out how to pass the id (received from the mysql db) for each particular record

[jQuery] validation when using jquery tabs

2009-02-01 Thread nmctech
I have used jquery tabs from the website http://docs.jquery.com/UI/Tabs I also downloaded your jquery validation script and tried to integrate both of them. So here is the scenario. I have 3 tabs, each of them have some text boxes as part of a form and all those text boxes need to be filled. I

[jQuery] Re: jquery and minify

2009-02-01 Thread Ariel Flesler
Yeah, I was just showing you the layout. We (jQuery) implemented the /*! since 1.3 because the YUI compressor is now used and it indeed recognizes /*!. Cheers On Sun, Feb 1, 2009 at 10:25 PM, Sam Sherlock sam.sherl...@gmail.com wrote: Thanks Ariel. I have found out that

[jQuery] Need to make a edit layout system using php and jquery...?

2009-02-01 Thread shyhockey...@gmail.com
Hi, I am right now trying to make a edit layout system. basicly I want to know how I can use jquery to grab the height width and position elements are at. Cause I plan to make in the edit mode to allow users to move like images and tables and texts around on the layout and even change

[jQuery] Re: click Event not working on first binded element on IE after one click

2009-02-01 Thread Ricardo Tomasi
It probably won't make any difference, but why not use the 'click' event and 'this'? There is no need to get e.target if there are no child elements. Also, if you're doing a POST, why are you using a querystring? $('.hint').click(function(){ var clickText = $(this).text();

[jQuery] Re: drag/drop replace text/element

2009-02-01 Thread coyote...@msn.com
Doh! Thanksheading over there now On Feb 1, 4:04 pm, Richard D. Worth rdwo...@gmail.com wrote: We'd love to help you over on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Sun, Feb 1, 2009 at 3:15 PM, coyote...@msn.com

[jQuery] Re: Cascade (chained) works in Firefox but not in IE

2009-02-01 Thread James
I did attach firebug at one point but couldn't glean anything useful from it. From my google research, the problem has to do with the encoding (UTF-8) and JQuery's handling of special characters. I can't explain why IE breaks while Firefox just displays a strange character... In any case, the

[jQuery] unsubscrive

2009-02-01 Thread diego valobra

[jQuery] unsubscrive

2009-02-01 Thread diego valobra
-- Diego Valobra pirolab WebDesign Roma

[jQuery] Re: toggle checkbox when clicking td

2009-02-01 Thread Manowar721
And yet, another way using jQuery-1.2.6. Like Dave Methvin said, there is prolly many ways to do it... var checkIt = function(){ if ($(this).siblings().children().filter(:checkbox).attr (checked)==false) { $(this).siblings().children().filter(:checkbox).attr (checked,checked);

[jQuery] Re: Need to make a edit layout system using php and jquery...?

2009-02-01 Thread Manowar721
Check this link = http://ui.jquery.com/ Good Luck, Manowar721 On Feb 1, 3:19 pm, shyhockey...@gmail.com shyhockey...@gmail.com wrote: Hi, I am right now trying to make a edit layout  system. basicly I want to know how I can use jquery to  grab the height width and position elements are at.

[jQuery] jquery.combobox jumping in internet explorer

2009-02-01 Thread amay0048
I've implemented the jquery.combobox plugin (http:// jquery.sanchezsalvador.com/page/jquerycombobox.aspx) on a site (http:// www.powerbuy.com.au). The problem is that when you click on the styled comboboxes in IE, the page jumps down, and sometimes this pushes the combobox off screen. I know this

[jQuery] block on body onload, unblock on at the end of $(document).ready

2009-02-01 Thread cambazz
Hello, I would like to blockUI on body onload like: body onload=$.blockUI({ message: null }); and when document ready finishes unblock, but unfortunately i can not unblock it if I put blockUI on onload of body. My page makes few ajax calls and some processing on document ready, and i want to

[jQuery] Re: about :not(:last)

2009-02-01 Thread Garito
Gracias, Ricardo! I change the code with the complete test case for my issue Sorry for the identation but the original code is generated and I copy/ paste with firebug If I'm not wrong, with the selector 'dl:not(:last)' SITE dl is incorrect in the returned list because is the last dl (if not

[jQuery] Does anybody make Sifr work with uitabs?

2009-02-01 Thread slake424
Hello, I have stumbled upon a problem with ui.tabs and Sifr3. If I attempt to use sifr to replace text within a tab, and that tab is hidden, the text never gets converted with Sifr. Sifr works on the first tab which is visible but when I open the next tab the text that supposed to be replaced is

[jQuery] Re: Does anybody make Sifr work with uitabs?

2009-02-01 Thread Cam Spiers
I have got around a similar problem in the past by positioning the element off the screen instead of hiding it. I don't know if this is applicable or not. Cheers, Cam On Mon, Feb 2, 2009 at 2:16 PM, slake424 iamtakashii...@googlemail.comwrote: Hello, I have stumbled upon a problem with

[jQuery] Re: ajaxForm returns error in IE7

2009-02-01 Thread Mike Alsup
Thanks Brian for the help. I completely forgot that I even posted this and I was searching again for an answer...I saw this post and was like holy crap, that is the same exact problem I am having...wait a minute hahaha. Thanks again. On Dec 9 2008, 11:28 pm, Brian J. Cohen

[jQuery] Re: block on body onload, unblock on at the end of $(document).ready

2009-02-01 Thread Mike Alsup
I would like to blockUI on body onload like: body onload=$.blockUI({ message: null }); and when document ready finishes unblock, but unfortunately i can not unblock it if I put blockUI on onload of body. My page makes few ajax calls and some processing on document ready, and i want to

[jQuery] Re: Does anybody make Sifr work with uitabs?

2009-02-01 Thread slake424
Oh my god! Cam Spiers saved my life. I just added position:absolute;left:-1px to the .ui-tabs-hide selector. and it's working on the even the next tab. Thanks you so much! Thank you. Slake424 On Feb 2, 1:22 am, Cam Spiers camspi...@gmail.com wrote: I have got around a similar problem in

[jQuery] live and plugins

2009-02-01 Thread Tom Shafer
How would I make live work with plugins? With the livequery plugin i used $('.text-edit').livequery('click', function() { akedit(save_url, options); }); akedit is a not a jquery function. How would I make a plugin work with this Thanks, -Tom

[jQuery] Re: live and plugins

2009-02-01 Thread Mike Alsup
How would I make live work with plugins? With the livequery plugin i used $('.text-edit').livequery('click', function() {                 akedit(save_url, options);         }); akedit is a not a jquery function. How would I make a plugin work with this It should work the same way

[jQuery] Re: live and plugins

2009-02-01 Thread Tom Shafer
no your right, i have no idea what i was thinking. I got it working Thanks though On Feb 1, 9:31 pm, Mike Alsup mal...@gmail.com wrote: How would I make live work with plugins? With the livequery plugin i used $('.text-edit').livequery('click', function() {                

[jQuery] tabs, ui.panel

2009-02-01 Thread pejot
Hi, What is a real meaning of ui.panel object in tabs related events? It is HTMLDivElement but how to get some more useful info from that? regards, Piotr

[jQuery] Re: Possible remote and/or messages bug

2009-02-01 Thread WizADSL
I accidentally sent my reply direct to the first responder, here is a summary re-post: Aside from the remote= tag on the form field as described in the original post, there isn't much to the form itself. The only thing I left out that might be of value is the script snippet that initializes the

[jQuery] Load JSON, Use It via Callback, Then Destroy?

2009-02-01 Thread nathanziarek
I'm repeatedly loading data via JSON every 2 seconds or so to keep a page updated. Each time data is returned. I take the data, update a list (the list can only have 5 items) and then never reference the data again. If I let this run for an hour, it crashes Safari. Looking at the inspector

[jQuery] Re: jQuery UI Tabs Flash

2009-02-01 Thread Chris
On Jan 12, 9:29 am, tlphipps tra...@brandyandtravis.com wrote: This is because of how browsers work.  What's happening is that the browser is downloading all the HTML and beginning to display it.  Then when the DOM is 'ready', jquery is running the code you've specified which creates the

[jQuery] Re: toggle checkbox when clicking td

2009-02-01 Thread Karl Swedberg
Yeah, what Dave said. Also, I wrote a tutorial a couple months ago about this very topic: http://www.learningjquery.com/2008/12/quick-tip-click-table-row-to-trigger-a-checkbox-click --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 1, 2009, at 4:20 PM,

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread Michael Geary
Ricardo and Brian both explained that .is('.btn px') tests for a px element inside an element with class=btn - not an element with class=btn px. You don't have a px element, do you? If not, then your code that sets the background color is never being executed. Try putting an alert() or a

[jQuery] Re: jQuery and Javascript timer question

2009-02-01 Thread brian
And, to clarify further, the selector for elements with both 'btn' 'px' classes[1] is '.btn.px'. Note that there's a dot before both class names. There's also no space--'.btn .px' would select for an element with classname 'px' inside of another with classname 'btn'. Remember that jQuery's

[jQuery] Trying to get CrossSlide plugin to work

2009-02-01 Thread Wonder95
I'm trying to implement the CrossSlide plugin with Drupal and I'm not having any luck. Based on some help I got from this group, I have this code that sets a different banner depending on the URL in script.js (at www.oregonpatrolservice.com): Drupal.behaviors.setBanner = function (context) {

[jQuery] Re: jQuery UI Tabs Flash

2009-02-01 Thread Klaus Hartl
Add the class ui-tabs-hide to your panels beforehand. I will not encourage bad practice (usage of inline styles). Note to self: Make FAQ for this. --Klaus On 2 Feb., 05:38, Chris cpot...@siolon.com wrote: On Jan 12, 9:29 am, tlphipps tra...@brandyandtravis.com wrote: This is because of

[jQuery] Re: tabs, ui.panel

2009-02-01 Thread Klaus Hartl
I think I've answered to that question already somewhere else, but here we go. Yes, ui.panel is a reference to the div DOM node that contains the content of a tab. You can do with it whatever you want to/ can do with a DOM node, for example wrap it in a jQuery object or retrieve its id

[jQuery] Re: Does anybody make Sifr work with uitabs?

2009-02-01 Thread Klaus Hartl
http://docs.jquery.com/UI/Tabs#...my_slider.2C_Google_Map.2C_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F --Klaus On 2 Feb., 02:37, slake424 iamtakashii...@googlemail.com wrote: Oh my god! Cam Spiers  saved my life. I just added position:absolute;left:-1px to the

[jQuery] Dynamic url in ajax call based on select value

2009-02-01 Thread James
I'm kind of scratching my head over this. Okay, so let's say I want to dynamically load a specific JSON flat file (could be xml, whatever) depending on the current select box: jQuery(#chained_sub_child).cascade(#chained_child,{ ajax: {url: $(select#chained).val()

  1   2   >