[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
a.karimzadeh wrote: by using the includeMany 1.0.0 plugin you can add multiple files with different callbacks for each one and also a global callback after all are loaded check it here: http://www.arashkarimzadeh.com/index.php/jquery/17-includemany-jquery-include-many.html Arash Karimzadeh

[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
a.karimzadeh wrote: by using the includeMany 1.0.0 plugin you can add multiple files with different callbacks for each one and also a global callback after all are loaded check it here: http://www.arashkarimzadeh.com/index.php/jquery/17-includemany-jquery-include-many.html Arash Karimzadeh

[jQuery] Re: include multiple css, js ,html on demand with jQuery

2009-02-22 Thread Rene Veerman
I meant: And a way to update a thread of load calls with more load-calls, while it runs (also with this-must-load-before-that).. Would be very usefull too.

[jQuery] How to animate after a fadeIn??

2009-02-22 Thread 123gotoandplay
Hi all, i am trying to animate poll bars after/during a fadein I have a animateResults function, handlePoll function. I have checked animateResults() and it works when i am not using it in an ajax structure -- function handlePoll() { $('.error').hide();

[jQuery] How to color a selected option in a select that will work on FF.

2009-02-22 Thread sirmoreno
Hi, I've added: style=background-color:#A0; to one of the options in a select it works well on IE but not on FF and Chrome. Any Ideas?

[jQuery] Re: How to color a selected option in a select that will work on FF.

2009-02-22 Thread Mauricio (Maujor) Samy Silva
background-color CSS property is well supported by IE and FF (Chrome not tested) So, double check your HTMl and CSS sintax. Here an example working: CSS: #a { background-color:#A0; } HTML form Select your favorite fruit: select id=fruits optionApple/option option id=aOrange/option

[jQuery] Re: how to use sortable and dragable on the same element?

2009-02-22 Thread Vincent Nguyen
Thanx for the link! But that doesn't hepl me! Can not use dragable, dropable, sortable on the SAME element! Such as we have two list, left and right! And i want to move items between two lists, and the same time, i also want to make each list is sortable! So, i must apply dragable, dropable,

[jQuery] Re: jQuery 1.3.2 + Dialog + Tabs = Bug

2009-02-22 Thread Klaus Hartl
Not sure yet what the bug is actually, but I found that the following fixes it: setTimeout(function() { tabdiv.children('#tabs').tabs(select,#tabs-2); }, 0); Lead me to changing the order of opening the dialog and selecting the other tab: content.dialog('open');

[jQuery] Re: jQuery 1.3.2 + Dialog + Tabs = Bug

2009-02-22 Thread Klaus Hartl
Got it: Changes to the :visible selector caused this. Since you're selecting the tab while the content is still hidden, the following filter wasn't working correctly anymore: filter(':visible') Changed to filter(':not(.ui-tabs-hide)') which is more reliable anyway. --Klaus On 22 Feb.,

[jQuery] Re: how to use sortable and dragable on the same element?

2009-02-22 Thread Frederik Ring
When you have two sortable lists, there's a 'connectWith' option in the $(this).sortable()-command that lets you drag items from one list to the other. You can also specify callbacks for the removal and receiving of list items via remove:function and receive:function. Sth like this:

[jQuery] Re: How to color a selected option in a select that will work on FF.

2009-02-22 Thread sirmoreno
When you select the colored option (Banana). On IE you can see the background color when the option is selected (the select is closed). But on FF and Chrome you can't see the color when the option is selected. On Feb 22, 12:44 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote:

[jQuery] Re: how to use sortable and dragable on the same element?

2009-02-22 Thread Richard D. Worth
There's also a demo for that: http://jqueryui.com/demos/sortable/#connect-lists - Richard On Sun, Feb 22, 2009 at 6:22 AM, Frederik Ring frederik.r...@gmail.comwrote: When you have two sortable lists, there's a 'connectWith' option in the $(this).sortable()-command that lets you drag items

[jQuery] Re: Loop through JSON data and check for each option specified

2009-02-22 Thread Nicolas R
Hey Thomas, from what you're saying it seems that we're trying to tackle the same issue. Have a look at this it may be helpful: http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/83281987eccf68be What's your solution? On Feb 21, 4:24 pm, Thomas Jaggi thomas.ja...@gmail.com

[jQuery] Synchronized 2 ajax calls

2009-02-22 Thread major
I have ajax call which implemented in Dojo. I need some JQuery mechanism which allow 1 ajax call to run, only after the former call has finished. I need such mechanism, since there is a known bug in IE which cannot run 2 ajax calls simultaneously.

[jQuery] Re: Loop through JSON data and check for each option specified

2009-02-22 Thread Thomas Jaggi
Hi Nicolas, I will definitely look into this, thank yout! On 22 Feb., 13:34, Nicolas R ruda...@googlemail.com wrote: Hey Thomas, from what you're saying it seems that we're trying to tackle the same issue. Have a look at this it may be

[jQuery] Re: Loop through JSON data and check for each option specified

2009-02-22 Thread Thomas Jaggi
(I didn't write the filter stuff yet...)

[jQuery] How can I scan the whole page of the website then put the correct data to each variables?

2009-02-22 Thread rhhhmon
Hey guys, So here's my problem. I want to scan the whole page of the website. I'm trying to locate 2 datas, then I will put each data into a separate variable. var listitem, thislist, itemname1, itemname2; listitem = getElementsByClass('-list-item'); for(var i = 0; i listitem.length; i++) {

[jQuery] Re: how to use sortable and dragable on the same element?

2009-02-22 Thread David Muir
Err, just apply sortable to both lists, and connect them. http://jqueryui.com/demos/sortable/#connect-lists David Vincent Nguyen wrote: Thanx for the link! But that doesn't hepl me! Can not use dragable, dropable, sortable on the SAME element! Such as we have two list, left and right! And i

[jQuery] Re: whether the structure of the jQuery object like this

2009-02-22 Thread hybris77
what is it that you want to achieve my friend ? maybe I can help On 22 Feb, 08:44, 浩翔 blackange...@gmail.com wrote: Anybody ? On Feb 22, 4:04 am, Alex blackange...@gmail.com wrote: whether the structure of the jQuery object like this : $('p') if the tag p only one, the structure

[jQuery] Positioning img inside div

2009-02-22 Thread Petar
I'm trying to create and place several img elements inside an empty div. Images should have specific coordinates inside a div and should be overlapping. I tried this: $('img src=pic1.gif alt= /').appendTo(#myDiv).css( { position: 'relative', left: '10px', top: '10px' } ); $('img src=pic2.gif

[jQuery] getting javascript code instead of node value

2009-02-22 Thread hybris77
hi, when I run this I am getting a response from the page I request xml from but the problem is in that I fail extracting the text from the xml tags, what am I doing wrong here? anyone? $.get( search_wiki.php?keyword=+searchString, function(xmlData){

[jQuery] How can I scan the whole page of the website then put the correct data to each variables?

2009-02-22 Thread rhhhmon
Hey guys, So here's my problem. I want to scan the whole page of the website. I'm trying to locate 2 datas, then I will put each data into a separate variable. var listitem, thislist, itemname1, itemname2; listitem = getElementsByClass('-list-item'); for(var i = 0; i listitem.length; i++) {

[jQuery] Question about Select working with array

2009-02-22 Thread evanluke
So I'm having trouble figuring about how to use the input from a select object onchange to pull a matching piece of data from an array and use it to change some text on a page. I've isolated what I'm trying to do on this page and commented it pretty thoroughly:

[jQuery] Re: whether the structure of the jQuery object like this

2009-02-22 Thread 浩翔
ok, i add you to my Gtalk . On Feb 22, 8:13 pm, hybris77 dist...@yahoo.com wrote: what is it that you want to achieve my friend ? maybe I can help On 22 Feb, 08:44, 浩翔 blackange...@gmail.com wrote: Anybody ? On Feb 22, 4:04 am, Alex blackange...@gmail.com wrote: whether the

[jQuery] Re: whether the structure of the jQuery object like this

2009-02-22 Thread 浩翔
but i think i have solved the question. On Feb 22, 8:13 pm, hybris77 dist...@yahoo.com wrote: what is it that you want to achieve my friend ? maybe I can help On 22 Feb, 08:44, 浩翔 blackange...@gmail.com wrote: Anybody ? On Feb 22, 4:04 am, Alex blackange...@gmail.com wrote: whether

[jQuery] selectable without multiple selections + draggable

2009-02-22 Thread shmuelzon
hey all, i'm trying to create something in the line of a file list with an option to drag the selected file right now i have a ul with a list of files. selectable was set on this ul and draggable on every li, so now i can select many files, and drag one. the problem is that when i start to drag

[jQuery] [Cycle] How to reverse direction of scrollVert fx?

2009-02-22 Thread Jonny Stephens
Cycle's scrollHorz and scrollVert fx options allow back and forth functionality for the Prev/Next and Pager functions. The scrollVert transition scrolls Next content downwards and Prev upwards. I'd prefer these to be reversed: Next = scrolls up, Prev = scrolls down. Thought I'd found an

[jQuery] Re: Synchronized 2 ajax calls

2009-02-22 Thread Dan G. Switzer, II
Use the complete callback to run some logic after an ajax call is complete. So you can do something like: $.ajax({ url: first_url , type: post , complete: function (){ $.ajax({ url: second_url , type: post , complete: function (){ alert('done with 2nd

[jQuery] PHP-JQUERY-Form submit without page refresh

2009-02-22 Thread bharani kumar
Hi, Working in php, Looking the great snippet, Form submit without page refresh, Thanks -- உங்கள் நண்பன் பரணி குமார் Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyerphp.site88.net/bharanikumar/

[jQuery] Re: Positioning img inside div

2009-02-22 Thread Thomas Jaggi
They should have position:absolute instead if position:relative. Relative means relative to the normal position. In this case you would have to set negative values for top/left to achieve an overlapping. Petar schrieb: I'm trying to create and place several img elements inside an empty

[jQuery] Re: Positioning img inside div

2009-02-22 Thread brian
And #myDiv should have position: relative On Sun, Feb 22, 2009 at 12:15 PM, Thomas Jaggi thomas.ja...@gmail.com wrote: They should have position:absolute instead if position:relative. Relative means relative to the normal position. In this case you would have to set negative values for

[jQuery] Re: How to make a secured login form

2009-02-22 Thread phicarre
Strange behaviour: I followed your example and I received \r\n1 instead of 1 ! My php code begins by ?php, I mean there is no chars before. Charset problem ? header problem ? On 13 fév, 20:07, James james.gp@gmail.com wrote: Okay, here's a simple way to understand it. Suppose in your

[jQuery] How to get the selected text inside a textarea

2009-02-22 Thread Frederik Ring
Hello! I don't know if this is a 100% jQuery-specific question, but here's what I'd like to do: I'd like to add a hyperlink-functionality to a textarea, so basically I'd just like to wrap a a href=thisthat/ a in plain text around the currently selected range in a textfield using the URL

[jQuery] Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
I just played with groups and error placement with the Validation plugin. It worked perfectly. I'm trying to combine it with some code that adds form fields dynamically. The validation plugin has an api to let me add rules, which works fine, but I don't seem to see a way to add groups. Am I

[jQuery] Re: Synchronized 2 ajax calls

2009-02-22 Thread major
Thanks Dan On Feb 22, 6:12 pm, Dan G. Switzer, II dswit...@pengoworks.com wrote: Use the complete callback to run some logic after an ajax call is complete. So you can do something like: $.ajax({    url: first_url    , type: post    , complete: function (){      $.ajax({        url:

[jQuery] Re: jquery.corners.js peformance issue

2009-02-22 Thread Cam Spiers
Hi I don't know anything about jquery.corners, but maybe your call needs to go in a jQuery(window).load call. Cheers, Cam On Sun, Feb 22, 2009 at 3:59 PM, Davis ywk...@gmail.com wrote: appericate for anyone comments/many thanks.

[jQuery] Re: jQuery 1.3.2 + Dialog + Tabs = Bug

2009-02-22 Thread mgl
Cool. Thanks for looking into that. On Feb 23, 12:10 am, Klaus Hartl klaus.ha...@googlemail.com wrote: Got it: Changes to the :visible selector caused this. Since you're selecting the tab while the content is still hidden, the following filter wasn't working correctly anymore:

[jQuery] A stupid plugin question

2009-02-22 Thread gantww
Hello all, I've written a handy plugin that encapsulates some UI functionality from one of my projects (and it was darn simple too - kudos to the developers). Anyway, my plugin is creating elements on the target dynamically and needs to use the draggable() plugin. However, when I try to call

[jQuery] 2 divs with a single scrollbar

2009-02-22 Thread Alain Roger
Hi, i did not get any anwser (at least i did not get answer emailed)...so sorry if someone did. i'm back with my question about 2 divs with 1 of them including an horizontal scrollbar. how can i scroll both divs horizontally when user scroll only 1 of them using the scrollbar ? i read jQuery

[jQuery] Re: How to get the selected text inside a textarea

2009-02-22 Thread Frederik Ring
Ok, I did it myself (+ the web). In case anyone is interested: function wrapAsLink(url){ var textarea = document.getElementById(myTa); var len = textarea.value.length; var start = textarea.selectionStart; var end = textarea.selectionEnd; var sel = textarea.value.substring(start, end); var

[jQuery] Re: Positioning img inside div

2009-02-22 Thread Petar
Thanks, Thomas and Brian, that's it! On Feb 22, 6:38 pm, brian bally.z...@gmail.com wrote: And #myDiv should have position: relative On Sun, Feb 22, 2009 at 12:15 PM, Thomas Jaggi thomas.ja...@gmail.com wrote: They should have position:absolute instead if position:relative. Relative

[jQuery] Re: How to reverse direction of scrollVert fx?

2009-02-22 Thread Jonny Stephens
Fixed by adding a juggled transition: $.fn.cycle.transitions.scrollVertUp = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push(function(curr, next, opts, fwd) { $.fn.cycle.commonReset(curr,next,opts);

[jQuery] Re: How to reverse direction of scrollVert fx?

2009-02-22 Thread Jonny Stephens
Ignore the above code. Though it seems to work, I think it should be: $.fn.cycle.transitions.scrollVertUp = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push(function(curr, next, opts, fwd) { $.fn.cycle.commonReset(curr,next,opts);

[jQuery] problems getting HREF attribute in click event

2009-02-22 Thread hybris77
can anyone help me to get the href attribute to send off with the function in this code please $(Item, xmlData).each(function(){ var title = $(this).find( Text ).text(); var url = $(this).find( Url ).text();

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread Frederik Ring
Because this in your context refers to the #wiki_article_list Refer to the a as a descendant of $(this) instead On Feb 22, 9:34 pm, hybris77 dist...@yahoo.com wrote: can anyone help me to get the href attribute to send off with the function in this code please $(Item,

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread hybris77
thanks frederik, but how do I refer to it a descendant? in the event function I would expect to get the event object as being THIS, please illuminate me On 22 Feb, 21:40, Frederik Ring frederik.r...@gmail.com wrote: Because this in your context refers to the #wiki_article_list Refer to the

[jQuery] no background in BlockUI Plugin

2009-02-22 Thread merihsaka...@yahoo.com
Hi all, I am using JQuery BlockUI Plugin.. and I just want to show my loading gif.. but BlockUI Plugin pop-ups has a background color.. and Its not what I want.. I know we can change pop-ups css.. But is it possible to show just looding gif.. no backgroundColor, no table color.. just my own gif.

[jQuery] animate CSS margin shift onclick

2009-02-22 Thread stvwlf
Hi When an h3 that is the header in an accordion is clicked, jQuery adds an active class to the h3. The stylesheet then assigns h3.active { left-margin: -25px } I would like to animate the 25 px shift from the default left-margin: 0px to -25px, and also animate the return back to 0px when

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread Frederik Ring
I don't know what else is contained in your #wiki_article_list, but since you appended the li just right before this should work: $(this).children('li:last').children('a').attr('href')

[jQuery] Set select menu with current day

2009-02-22 Thread Nic Hubbard
I have a var that gets set with the current day, so, today would be 22. Then, I have a select menu with all the days of the month. How could I set the selected item in the select menu to the current day that is in my var?

[jQuery] Re: Set select menu with current day

2009-02-22 Thread Liam Potter
put id's on the days of the month eg id=day1 then you could do $(day+dayVar).addClass(activeclass); Nic Hubbard wrote: I have a var that gets set with the current day, so, today would be 22. Then, I have a select menu with all the days of the month. How could I set the selected item in

[jQuery] Re: Question about Select working with array

2009-02-22 Thread James
The way you store mdata you would have to loop through each item to find it. What if you stored it like this: var mapdata = { 'basic': { mID:'basic', mtitle:'Basic Map' }, 'bookmobile': { mID:'bookmobile', mtitle:'Bookmobile Stops' }, 'booksbymail': { mID:'booksbymail',

[jQuery] Re: How to animate after a fadeIn??

2009-02-22 Thread James
When you use a callback, you don't include the parenthesis, only the function variable: fadeIn(1500, animateResults()); is incorrect. Use: fadeIn(1500, animateResults); On Feb 21, 11:12 pm, 123gotoandplay wesweatyous...@gmail.com wrote: Hi all, i am trying to animate poll bars after/during a

[jQuery] Re: Set select menu with current day

2009-02-22 Thread Nic Hubbard
I am not needing a class. This is a select input menu, that has options for 1-31. I need to have the correct option set as the selection option, based on what day it currently is. On Feb 22, 1:12 pm, Liam Potter radioactiv...@gmail.com wrote: put id's on the days of the month eg id=day1

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Jörn Zaefferer
Nope, simply doesn't exist yet. For other options, you can just add them at runtime: var validator = $(...).validate(); validator.settings.onfocus = ...; Though in this case, the groups-option is preprocessed when initializing the plugin, so just updating validator.settings.groups isn't enough.

[jQuery] Re: Set select menu with current day

2009-02-22 Thread Liam Potter
oh ok, same idea then I assume the days are displayed as numbers $(select).children(option).each(function() { if ( $(select).children(option).html() == varDay ) { $(this).attr(selected,selected); } }); Nic Hubbard wrote: I am not needing a class. This is a

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread Frederik Ring
Ok, so now I think I get what you want to do - I was running around wondering why you had the preventDefault() in there. In your case the click event isn't bound to the a but to your #wiki_article_list since you are chaining it after the append(). If you would do it like: $(

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
Should I file an enhancement report for it? On Feb 22, 3:32 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Nope, simply doesn't exist yet. For other options, you can just add them at runtime: var validator = $(...).validate(); validator.settings.onfocus = ...; Though in this

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Jörn Zaefferer
Yes, preferably with a little usecase description. Helps providing appropiate examples. Jörn On Sun, Feb 22, 2009 at 11:02 PM, Raymond Camden rcam...@gmail.com wrote: Should I file an enhancement report for it? On Feb 22, 3:32 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote:

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
Ticket #4213 http://dev.jquery.com/ticket/4213 On Feb 22, 4:06 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Yes, preferably with a little usecase description. Helps providing appropiate examples. Jörn On Sun, Feb 22, 2009 at 11:02 PM, Raymond Camden rcam...@gmail.com wrote:

[jQuery] Re: Firefox 3 - contentEditable

2009-02-22 Thread canarchy
Did you set the designMode to on? kevdotbadger wrote: Hay all, Firefox 3 as support for contentEditable. This is great and all, but i have a huge error. http://kevin-ruscoe.plesk3.freepgs.com/contenteditable/ I cannot run execCommand() on my text, this works in safari and IE6+

[jQuery] Re: Set select menu with current day

2009-02-22 Thread Nic Hubbard
Perfect! Thank you! On Feb 22, 1:34 pm, Liam Potter radioactiv...@gmail.com wrote: oh ok, same idea then I assume the days are displayed as numbers $(select).children(option).each(function() {         if ( $(select).children(option).html() == varDay ) {                

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread hybris77
I O U 1 mate that seems to have solved two problems in one go, thought that maybe both might do that same in the end but your final solution is more correct, before I was getting multiple answers somehow, now I get what I want, nice one On 22 Feb, 22:45, Frederik Ring frederik.r...@gmail.com

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread brado32003
I've made $109 on this free sportsbetting site, and my friend currently has over $200!... You start with 10 cents and when you get to $20 you can cash out or keep going! Check it out... http://www.centsports.com/?opcode=289473 Raymond Camden rcam...@gmail.com wrote: Ticket

[jQuery] Re: How to get the selected text inside a textarea

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Re: jquery.corners.js peformance issue

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Problem with refreshing

2009-02-22 Thread amaze646
Hello I having a problem wich I dont know how to solve. I have a list of users and each user listed have a button DELETE. When I click on that button, user is deleted. Now, when I delete user I want to update my list of users at same time. Problem is that when I delete one user, list refreshes

[jQuery] Attach event to IFrame load event

2009-02-22 Thread Nicolas
Hi, I'm trying to bind to iframe load event, using $(iframe).load (function(){ }. On Firefox, it works as expected, but on IE it only works when I'm navigating inside the iframe but not for the initial content. Is this the right way to get this event or am I missing something? JQuery : 1.3.2

[jQuery] Re: 2 divs with a single scrollbar

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] [autocomplete] show autocomplete list on focus

2009-02-22 Thread sandesh247
Hi. Is it possible to make the autocomplete list pop up automatically, if the minchars parameter is 0? Alternatively, is there an API call which could be bound to the focus event of the input element? Thanks.

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Re: A stupid plugin question

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Input type radio events

2009-02-22 Thread Bruno
Hi, I'm newbie about javascript and jquery. I would like to know how can I change values of all input type checkbox to unchecked when the user changes the values to No answer of a input type radio. The code can be the following form fieldset pinput type=radio name=foo /yes/p pinput

[jQuery] Re: jQuery 1.3.2 + Dialog + Tabs = Bug

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Re: Positioning img inside div

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] Re: How to reverse direction of scrollVert fx?

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] why does this work in 1.2.6 but not 1.3.2?

2009-02-22 Thread yehosef
I haven't tried the following in 1.3.0/1 - I went to upgrade something to 1.3.2 and noticed the form didn't work any more. I have a radio button that I want to reprocess a the form when it is changed. I read somewhere that some browser (probably IE) didn't record the onchange of radios but that

[jQuery] help to develop my Jquery Accordion

2009-02-22 Thread lock2007
Hi, I tried for a few days to have a code JQuery Accordion for my menu as it is used in the Apple site. But I still have problems. So I found another nice code in the address: http://berndmatzner.de/jquery/hoveraccordion/index.php I tried to put the code to work on three levels: Menu1 Sub menu 1

[jQuery] Re: Synchronized 2 ajax calls

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi

[jQuery] why does this work in 1.2.6 but not 1.3.2?

2009-02-22 Thread yehosef
I haven't tried the following in 1.3.0/1 - I went to upgrade something to 1.3.2 and noticed the form didn't work any more. I have a radio button that I want to reprocess a the form when it is changed. I read somewhere that some browser (probably IE) didn't record the onchange of radios but that

[jQuery] Re: Firefox 3 - contentEditable

2009-02-22 Thread brado32003
I've made $109 on this free sportsbetting site, and my friend currently has over $200!... You start with 10 cents and when you get to $20 you can cash out or keep going! Check it out... http://www.centsports.com/?opcode=289473 canarchy canar...@gmail.com wrote: Did you set

[jQuery] Drag is very smooth on Firefox, but it is total screw on IE7!

2009-02-22 Thread Vincent Nguyen
I'm using jQuery UI for drag and drop and Mootol for sortable, b/c we don't use drag+drop_sort on the same element! It works very well in FF! The darging is very smooth! But in IE, it is very screw! It seems IE can parse/draw enough fast! When i dragging a item, it happens slowly. Look at this on

[jQuery] Capturing CDATA from XML response

2009-02-22 Thread sere
Hello, I've searched everywhere and can't find a specific answer to my problem. I have a certain function which posts to a backend.php file. The php file generates some XML which is returned to the callback function. The problem is that it alerts !--[CDATA[liSome element/li]]-- (it also adds

[jQuery] [Validate]e-mail validation

2009-02-22 Thread ymai
Hello everyone I notice that an e-mail address like ad...@foo_bar.net seems to be valid for jQuery Validate (http://bassistance.de/jquery- plugins/jquery-plugin-validation/) but invalid for the PHP filter_var function (http://www.w3schools.com/PHP/func_filter_var.asp) The underscore caracter is

[jQuery] jquery upgrade issue

2009-02-22 Thread geomunir
Hi, I'm new to jquery. I was trying to use inettuts widget script with the latest jquery, but it shows error message in IE7 FF3. It throws this message: uncaught exception: Syntax error, unrecognized expression: With no line number. I googled it, and someone mentioned its related to @attr

[jQuery] Best Eclipse plug-in for jQuery?

2009-02-22 Thread Rick Faircloth
Opinions?

[jQuery] Re: Problem with refreshing

2009-02-22 Thread James
Where are the delete button(s) located? If the buttons are regenerated from the page via AJAX, the click event has to be re-bind again on the button. You might consider using the live() function rather than click(). On Feb 22, 11:06 am, amaze646 mazej.i...@gmail.com wrote: Hello I having a

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
awesome, thanks. can't believe i missed that one. and as for the content of the tab? if i wanted a tab to always have two textboxes, should i modify the template? and then who would i access these two input boxes dynamically? thanks heaps paul On Feb 21, 12:41 am, Klaus Hartl

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
awesome, thanks. can't believe i missed that one. and as for the content of the tab? if i wanted a tab to always have two textboxes, should i modify the template? and then who would i access these two input boxes dynamically? thanks heaps paul On Feb 21, 12:41 am, Klaus Hartl

[jQuery] Re: e-mail validation

2009-02-22 Thread RotinPain
Hi, i'm not using this plugin but you seems right about the problem. I can just invite you with posting in the appropriate plugin bug list for making the author aware of the problem. taken from the plugin authors page: [quote] Please post bug reports and other contributions (enhancements,

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
awesome, thanks. can't believe i missed that one. and as for the content of the tab? if i wanted a tab to always have two textboxes, should i modify the template? and then who would i access these two input boxes dynamically? thanks heaps paul On Feb 21, 12:41 am, Klaus Hartl

[jQuery] Re:help to develop my Jquery Accordion

2009-02-22 Thread Charlie Tomlinson
you haven't explained what the problem is have you a link to look at? lock2007 wrote: Hi, I tried for a few days to have a code "JQuery Accordion" for my menu as it is used in the Apple site. But I still have problems. So I found another nice code in the address:

[jQuery] Problem with attribute setting in version 1.3.2

2009-02-22 Thread Bouland
I have a tendency to build forms with separate buttons that require the form to have multiple action attributes. In previous versions of jQuery I would insert an event such as onclick=$( '#bookForm' ).attr ( 'action', 'index.php? pg=illustrations' ).submit (); Functionally, I'm looking to do

[jQuery] ThickBox - Dynamic resizing from within i-frame

2009-02-22 Thread SeamlessB
I am using Thickbox to call an iframe... ie. code a href=blah.html?TB_iframe=trueheight=400width=400modal=true class=thickbox title=blahblah/a /code i am trying to use thickbox to display a series of i-framed forms that altogether comprise a survey. first, can i change the size of the parent

[jQuery] jQuery UI Developer

2009-02-22 Thread Brandon Casci
Hello I know this isn't then general purpose for this list, but I've had a lot of trouble finding someone fluent with jQuery. By any chance, is there a good web UI developer out there with some availability and jQuery fluency? I live in the Boston, MA area. You don't have to live here, but I

[jQuery] class=\stripeMe\ gets removed after $(#quote_list).children().remove(); gets called

2009-02-22 Thread GrootBaas
Hi all, I would appreciate any information to help me solve this issue ... Thank you in advance fro your time ... I have a table in my view ... http://screencast.com/t/z9zFsVN2Bn Then, in my controller, I amend another table, and the table structure is as follows ...

[jQuery] Re: class=\stripeMe\ gets removed after $(#quote_list).children().remove(); gets called

2009-02-22 Thread GrootBaas
Looking at the final result in real time may be helpful http://screencast.com/t/qiE8qcMoqY2 On Feb 23, 3:03 pm, GrootBaas fj.lu...@gmail.com wrote: Hi all, I would appreciate any information to help me solve this issue ... Thank you in advance fro your time ... I have a table in my

[jQuery] Re: jquery upgrade issue

2009-02-22 Thread Karl Swedberg
Hi there, The problem could be that the script is using an older version of jQuery UI as well. In order for it to work with jQuery 1.3.x you'll need to update it to at least 1.6rc6. http://ui.jquery.com/download --Karl Karl Swedberg www.englishrules.com

[jQuery] Re: how to use sortable and dragable on the same element?

2009-02-22 Thread Vincent Nguyen
I wished that i find this sonner! I must play with Dojo all yesterday! Anyway, this is correct link http://jqueryui.com/demos/sortable/connect-lists.html Hope that will help others! Since i google and realize that it has many people encounter the same issue 2009/2/22 David Muir

[jQuery] Re: jquery upgrade issue

2009-02-22 Thread geomunir
Hi Karl, I have upgraded the UI as well. I forgot to include it in the post. Still errors out. Karl Swedberg-2 wrote: Hi there, The problem could be that the script is using an older version of jQuery UI as well. In order for it to work with jQuery 1.3.x you'll need to update it

  1   2   >