[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 code$(document).ready(function() { $(table#test tr.edit).hover(function(){$(this).addClass (hover);},function(){$(this).removeClass(hover);}); });/code and this works in showContent.php. Just a simple grey background color

[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);

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

2009-02-07 Thread 123gotoandplay
, scroll);        $(#content).load(showContent.php, function(){ // your code here... });                }); Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 6:40 PM, 123gotoandplay wesweatyous...@gmail.com wrote: Hi there, I am having

[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 a href=showContent.php? action=addContentkeepThis=trueTB_iframe=trueheight=450width=550 class=thickbox again when i directly browse to showContent.php it works but

[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] 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

[jQuery] dd 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 ddasfaa/dd adding a tab, but when i load test.html in an ajax div the tabs are gone How do i fix this??

[jQuery] Re: dd 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 wesweatyous...@gmail.com wrote: Hi all, When i directly browse to test.html, i can see the ddasfaa/dd adding a tab, but when i load test.html in an ajax div the tabs are gone How do i fix this??

[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: $.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 wesweatyous...@gmail.com wrote: So why doesn't my success callback excutes? $(document).ready(function(){         $('.error').hide();         $(.voteBtn).click(function() {                 var

[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 form method=post name=newsletterForm Strange thing is when i just have the form in a seperate file it works But i am including it

[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] 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] 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] Re: Please, help me convert this flash menu into a jQuery menu?

2009-02-28 Thread 123gotoandplay
: '#ACA' })       .animate({ marginLeft: '-=5px' }, 200); }); That's kind of self-explanatory, you'll find all about the working details at docs.jquery.com cheers, - ricardo On Feb 27, 3:37 pm, 123gotoandplay wesweatyous...@gmail.com wrote: Hi there, Could anyone get me started

[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' },

[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] 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] 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] .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] 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 wesweatyous...@gmail.com wrote: Hi all, I am having problems with //$('#upload_link').click(function() {alert(Upload clicked)}); $('#upload_link').upload({ when i use

[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=showonderdeel=home); }); When i downgrade jQuery to 1.2.6

[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('pdiv id=ajaxLoader align=center img

[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

[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: [validate]

2009-12-02 Thread 123gotoandplay
Regards, Dhruva Sagar. On Wed, Dec 2, 2009 at 3:21 PM, 123gotoandplay wesweatyous...@gmail.comwrote: Hi, I am trying to validate some dynamic generated input fields, like so $(#form1).validate({                rules: {                $([name^=eventlink

[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] 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] 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] 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, 123gotoandplay wesweatyous...@gmail.com wrote: Hi, i use this $(#products).click

[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: 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, scroll);

[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] 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: 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 wesweatyous...@gmail.com wrote: Hi all, I am trying to get this mega dropdown menu: see textielmuseum.nl/ So far i have: bldd.nl

[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 wesweatyous...@gmail.com 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 chriss...@gmail.com

[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: 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] 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) {

[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] 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] 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(); } On Feb 17, 2:08 pm, 123gotoandplay wesweatyous...@gmail.com

[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(); } })