solution:
$('#type').change(function() {
if($('#type :selected').val() === "parttime") {
$('#numOfHours').show();
} else {
$('#numOfHours').hide();
}
})
this is what i have now
$('#numOfHours').hide();
$('#type').change(function() {
if($('#type :selected').text() == "parttime") {
$('#numOfHours').show();
} else {
$('#numOfHours').hide();
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??
How do i show a input field only when a certain option is selected?
and hide if it isn't selected
regards
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"
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");
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,
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
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
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
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({
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", "
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");
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
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??
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??
ok this one helped me out:
http://stackoverflow.com/questions/1020943/jquery-validate-with-a-dynamic-number-of-fields
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
Hi,
I am trying to validate some dynamic generated input fields, like so
$("#form1").validate({
rules: {
$("[name^=eventlink]") : {
required: true,
url: true
}
}
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
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
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
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
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
Hi all,
How do i prevent my jQuery from reloading per page, but still have SEO
friendly pages???
any tips, pointers
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.
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);
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)
{
>
> $(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,
&
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,
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
just examine my code again and i already have the return false;
function handleNewsletter(){
$('.error').hide();
$(".knop").click(function() {
// Your code here
$('.error').hide();
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
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
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
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??
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??
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
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???
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??
() {
> $("#content").css("overflow-y", "scroll");
> $("#content").load("showContent.php", function(){
>
> // your code here...
>
> });
>
> });
>
>
> Read jQuery HowTo Resource
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
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
43 matches
Mail list logo