[jQuery] Re: show input field base on selected option

2010-02-17 Thread 123gotoandplay
solution: $('#type').change(function() { if($('#type :selected').val() === "parttime") { $('#numOfHours').show(); } else { $('#numOfHours').hide(); } })

[jQuery] Re: show input field base on selected option

2010-02-17 Thread 123gotoandplay
this is what i have now $('#numOfHours').hide(); $('#type').change(function() { if($('#type :selected').text() == "parttime") { $('#numOfHours').show(); } else { $('#numOfHours').hide();

[jQuery] How do i populate two dropdown menus?

2010-02-17 Thread 123gotoandplay
Hi How do i populate dropdown menuB depending on the selected option in dropdown menuA??? I am parsing the menu data from a mysql db with php??

[jQuery] show input field base on selected option

2010-02-17 Thread 123gotoandplay
How do i show a input field only when a certain option is selected? and hide if it isn't selected regards

[jQuery] Re: Problem with a simple dropdown menu: it keeps collapse??

2010-02-08 Thread 123gotoandplay
oh, and i am trying to use the hoverflow plugin. (http://www. 2meter3.de/code/hoverFlow/) but it assumes you are animating the current div/id I our case the trigger is another div. but this doesn't work $("#nav-container").hover(function(e) { $("#dropmenu"

[jQuery] Re: Problem with a simple dropdown menu: it keeps collapse??

2010-02-08 Thread 123gotoandplay
Hi Chris, Tx for thinking along / posting the code ;) I think i am almost there, but the menu doesn't stop when you quickly hover it continues to drop down and up. I tested with $("#nav-container").hover(function() { $("#dropmenu").stop().slideToggle("fast");

[jQuery] Problem with a simple dropdown menu: it keeps collapse??

2010-02-07 Thread 123gotoandplay
Hi, I am having a problem with www.bldd.nl/prototypes/megamenu/test11.html When you quickly rollover the menu it keeps in "rollover" state, how can i fix this??? regards,

[jQuery] Re: How do i get this mega dropdown with jQuery??

2010-01-06 Thread 123gotoandplay
is this a good solution: bldd.nl/prototypes/megamenu/test9.html On Jan 6, 5:41 pm, 123gotoandplay wrote: > tx, for answering > > Any example how to do this?? > > I am stuck with the hover and the dropdown div > > Highly appreciated > > On Jan 6, 4:24 pm, Chris wro

[jQuery] Re: How do i get this mega dropdown with jQuery??

2010-01-06 Thread 123gotoandplay
mouseover the > first. The menu items themselves appear to be completely irrelevant as > far as the dropdown effect is concerned. > > On Jan 6, 8:37 am, 123gotoandplay wrote: > > > Hi all, > > > I am trying to get this mega dropdown menu: > > see textielmuseum

[jQuery] How do i get this mega dropdown with jQuery??

2010-01-06 Thread 123gotoandplay
Hi all, I am trying to get this mega dropdown menu: see textielmuseum.nl/ So far i have: bldd.nl/prototypes/megamenu/test2.html But i can´t get the hoverIntent to work? here´s my try W.I.P bldd.nl/prototypes/megamenu/test4.html Any tips, ideas how i to get my mega dropdown to work on hover and

[jQuery] Re: Problem with a search form in a loaded php file??

2009-12-28 Thread 123gotoandplay
i have further altered the ajax_search function and i get the error message function ajax_search() { var search_word=$("#searchTerm").val(); var dataString = 'search_word='+ search_word; alert("ajax search this "+dataString); $.ajax({

[jQuery] Re: Problem with a search form in a loaded php file??

2009-12-28 Thread 123gotoandplay
Tx, for the answers but i am not quit there yet. I am able to trigger the search_button? I can see the alerts i have set $(document).ready(function() { $("#content").css("overflow-y", "hidden"); $("#manageList").click(function() { $("#content").css("overflow-y", "

[jQuery] Problem with a search form in a loaded php file??

2009-12-23 Thread 123gotoandplay
hi, have simple search form which works in list.php Now i am 'loading' list.php in #content and now the search function doesn't work. what i have done - change the type from submit to button - in index.php i added $("#content #search_button").click(function() { alert("click");

[jQuery] Re: How do i navigate within an ajax div??

2009-12-21 Thread 123gotoandplay
i was thinking something like $("#pagination").click(function() { $("#content").css("overflow-y", "scroll"); $("#content").load("list.php?..with the vars"); }); On Dec 21, 8:48 pm, 123g

[jQuery] How do i navigate within an ajax div??

2009-12-21 Thread 123gotoandplay
Hi, i use this $("#products").click(function() { $("#content").css("overflow-y", "scroll"); $("#content").load("list.php"); }); and i have a loop of 10 products in list.php with a pagination. but how can i use the pagination as it doesn't stay in div #content??

[jQuery] Looking for jquery accordion menu with submenu??

2009-12-09 Thread 123gotoandplay
Hi all, I am looking for a jquery accordion menu with submenu. Right now i am trying to edit http://www.i-marco.nl/weblog/archive/2008/05/08/simple_jquery_accordion_menu__?utm_campaign=searchlanding but unfortunatly i am stuck Any other tutorials, suggestions??

[jQuery] Re: [validate]

2009-12-02 Thread 123gotoandplay
ok this one helped me out: http://stackoverflow.com/questions/1020943/jquery-validate-with-a-dynamic-number-of-fields

[jQuery] Re: [validate]

2009-12-02 Thread 123gotoandplay
hat for this > validate() call. > > Thanks & Regards, > Dhruva Sagar. > > On Wed, Dec 2, 2009 at 3:21 PM, 123gotoandplay > wrote: > > > Hi, > > > I am trying to validate some dynamic generated input fields, like so

[jQuery] [validate]

2009-12-02 Thread 123gotoandplay
Hi, I am trying to validate some dynamic generated input fields, like so $("#form1").validate({ rules: { $("[name^=eventlink]") : { required: true, url: true } }

[jQuery] Re: Load image with an ajax preloader?

2009-11-10 Thread 123gotoandplay
Hi michel, Tx for the explanation, i am trying your suggestion and it indeed works like a charm. At the moment i am updating div imagePreview depending on a combo of select menu options. As i understand it the ajax-loader.gif keeps on spinning in the background. Is there a way to check if the i

[jQuery] Load image with an ajax preloader?

2009-11-10 Thread 123gotoandplay
How do i make this work? $("#color_update").change(function(){ var src = $("option:selected", this).val() ; var src2 = $("#quantity_update option:selected").text(); $('#imagePreview').html(''); $('#imag

[jQuery] How to get this to work in jQ 1.3.x?

2009-04-27 Thread 123gotoandplay
Hi there, I got a problem with jQuery 1.3.2 and IE when i use this for a menu $("#manageHome").click(function() { $("#content").css("overflow-y", "scroll"); $("#content").load("manageText.php?action=show&onderdeel=home"); }); When i downgrade jQue

[jQuery] Re: .upload doesn't work on a mac??

2009-03-30 Thread 123gotoandplay
oh forgot to mention it's the upload plugin from http://www.michaelmitchell.co.nz On Mar 30, 11:14 am, 123gotoandplay wrote: > Hi all, > > I am having problems with > //$('#upload_link').click(function() {alert("Upload clicked")}); > $('#upl

[jQuery] .upload doesn't work on a mac??

2009-03-30 Thread 123gotoandplay
Hi all, I am having problems with //$('#upload_link').click(function() {alert("Upload clicked")}); $('#upload_link').upload({ when i use .upload it doesn't work with apple mac?? I doesn't open up the folder/file browser any tips, suggestions grtz

[jQuery] How to prevent refreshing jQuery menu and still have SEO friendly links/pages??

2009-03-10 Thread 123gotoandplay
Hi all, How do i prevent my jQuery from reloading per page, but still have SEO friendly pages??? any tips, pointers

[jQuery] How to prevent refreshing jQuery menu and still have SEO friendly links/pages??

2009-03-10 Thread 123gotoandplay
Hi all, So i have created a jQuery menu, but now i am stuck with SEO friendly url's in combo with my jQuery menu refreshing? I don't want my jQuery menu refreshing each time you click on a menu link.

[jQuery] submenu doesn't hide

2009-02-28 Thread 123gotoandplay
url: bldd.nl/jsproblems/convertToJQuery.html this part of my code doesn't seem to work alert($expandedSiblings.size()); if ($expandedSiblings.size() > 0) { $expandedSiblings.slideUp(500, function(){ $heading.find('ul').slideDown(500);

[jQuery] Add an animate function to a addClass?

2009-02-28 Thread 123gotoandplay
Hi all, why doesn't this work? it doesn't color red $.fn.hoverClass = function(c) { return this.each(function(){ $(this).hover( function() { $(this).addClass(c).animate({ marginLeft: '+=5px' }, 200)

[jQuery] Re: Please, help me convert this flash menu into a jQuery menu?

2009-02-28 Thread 123gotoandplay
{ > >   $(this).stop() >       .css({ backgroundColor: '#ACA' }) >       .animate({ marginLeft: '-=5px' }, 200); > > }); > > That's kind of self-explanatory, you'll find all about the working > details at docs.jquery.com > > cheers, &

[jQuery] Please, help me convert this flash menu into a jQuery menu?

2009-02-27 Thread 123gotoandplay
Hi there, Could anyone get me started to convert this flash menu to a jquery menu? www.bldd.nl/jsproblems/convertToJQuery.html It's a dropdown menu with submenu's sliding in from the left. regards,

[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(); $(".voteBtn").cli

[jQuery] Re: $.ajax on succes is not being executed???

2009-02-20 Thread 123gotoandplay
just examine my code again and i already have the return false; function handleNewsletter(){ $('.error').hide(); $(".knop").click(function() { // Your code here $('.error').hide();

[jQuery] Re: $.ajax on succes is not being executed???

2009-02-20 Thread 123gotoandplay
tx for answering, thanks 2 for the "remove @" tip what do you mean with "You should probably return false from that click handler" i have the form just like this Strange thing is when i just have the form in a seperate file it works But i am including it with php and now the success part won

[jQuery] Re: $.ajax on succes is not being executed???

2009-02-19 Thread 123gotoandplay
ps poll-process3.php is not being called :( On 19 feb, 10:52, 123gotoandplay wrote: > So why doesn't my success callback excutes? > > > $(document).ready(function(){ >         $('.error').hide(); >         $(".voteBtn").click(funct

[jQuery] $.ajax on succes is not being executed???

2009-02-19 Thread 123gotoandplay
So why doesn't my success callback excutes? $(document).ready(function(){ $('.error').hide(); $(".voteBtn").click(function() { var poll = $("inp...@name='poll']:checked").val(); alert("send: "+poll); if (poll

[jQuery] Re: tag doesn't show a tab in an ajax div??

2009-02-17 Thread 123gotoandplay
hmm, turns out it does work in IE but not in firefox On 17 feb, 20:58, 123gotoandplay wrote: > Hi all, > > When i directly browse to test.html, i can see the asfaa > adding a tab, but when i load test.html in an ajax div the tabs are > gone > > How do i fix this??

[jQuery] tag doesn't show a tab in an ajax div??

2009-02-17 Thread 123gotoandplay
Hi all, When i directly browse to test.html, i can see the asfaa adding a tab, but when i load test.html in an ajax div the tabs are gone How do i fix this??

[jQuery] Problems with the simple jquery suckerFish menu?

2009-02-09 Thread 123gotoandplay
Hi there, I am having problems with the suckerFish menu if i copy the code and let the font-size be 22px all is good: bldd.nl/jsproblems/menuTest2.html please rollover item3 but when i use a smaller font bldd.nl/jsproblems/menuTest2.html and you roll a couple of times over item3, i can't sele

[jQuery] jquery.ocupload-packed.js plugin hides my upload link?

2009-02-07 Thread 123gotoandplay
somehow var myUpload = $('#upload_link').upload({ etc. hides my div#upload_link when i open it in a thickbox?? i am using the jquery.ocupload-packed.js plugin. Directly browsing to the file doesn't hide the div. What can i do???

[jQuery] Re: How to enable jquery in a loaded page?

2009-02-07 Thread 123gotoandplay
ok i think i understand the callback. But what about showContent.php in a thickbox iframe ??? i am trying this without any look again when i directly browse to showContent.php it works but with the thickbox class it doesn't??

[jQuery] Re: How to enable jquery in a loaded page?

2009-02-07 Thread 123gotoandplay
() { >                $("#content").css("overflow-y", "scroll"); >        $("#content").load("showContent.php", function(){ > > // your code here... > > }); > >                }); > > > Read jQuery HowTo Resource

[jQuery] How to enable jquery in a loaded page?

2009-02-06 Thread 123gotoandplay
Hi there, I am having a problem to enable jquey in a loaded page. For example: base.php has jquery and i load showContent.php like: $(document).ready(function() { $("#show").click(function() { $("#content").css("overflow-y", "scroll"); $("#content").load("showCo

[jQuery] Hover in a loaded page stopped working??

2009-02-05 Thread 123gotoandplay
Hi all, I am stuck with this in a page showContent.php i have $(document).ready(function() { $("table#test tr.edit").hover(function(){$(this).addClass ("hover");},function(){$(this).removeClass("hover");}); }); and this works in showContent.php. Just a simple grey background color on