Tagged Questions

7
votes
5answers
188 views

Help me to simplify my jQuery, it's growing huge and redundant!

Hey all, I am no jQuery expert, but I'm learning. I'm using a bit (growing to a LOT) of jQuery to hide some images and show a single image when a thumb is clicked. While this bit of jQuery works, it's ...
3
votes
1answer
168 views

Simplify redudant jQuery code

I would like to simplify my jQuery code for a footer popup/tooltip animation because it is redundant and not very extensible. I found this post: jQuery code to simplify. but could not figure out how ...
3
votes
4answers
209 views

How to simplify a if/else jquery snippet

I have a super long jquery snippet that I feel could be simplified with the right logic. I'm afraid to touch it since I finally got it to work. the "else $target = #none" is literally a "show ...
2
votes
7answers
93 views

Is there a way to simplify this JavaScript code? (same functions for multiple classes)

Hi the code I am trying to simplify is: $(document).ready(function(){ $('.selection0').click(function() { $('.selection0').css('background-color', 'white'); ...
2
votes
1answer
105 views

Simplifying Jquery code HELP!

I am trying to load two modal dialog boxes with Jquery. Both of them load separate pages using ajax. The only problem is that only one of them works. I think I need to simplify my code but am unsure ...
1
vote
1answer
74 views

Simplify my JS code

I just made this code for the menu of a site. The problem is that I'm pretty sure it can be simplified. I don't know if I can use a switch or something, I am only beginner with Jquery .... ...
1
vote
6answers
163 views

jQuery code to simplify

I've got this code but it's a bit repeating itself, is there a way to make it shorter? jQuery(document).ready(function() { var allTabs = jQuery('#front, #blog, #portfolio, #pages, #colors, ...
0
votes
2answers
32 views

simpler way of grouping numerous variables by value of select?

thanks for looking. im still learning the more complex javascript and jquery coding so could do with some help as i have no idea about the following or even if its possible! i need a ...
0
votes
6answers
72 views

How can I simplify this Jquery code?

$('a#golf-link').click(function () { $('ul#golf').fadeIn(500); $('ul.img-list').not('#golf').fadeOut(200); $('a#golf-link').addClass("current-link"); $('.side-menu li ...
0
votes
2answers
60 views

help simplify jquery, please

<script> $(document).ready(function () { // for some reason the button hide has to be at the top $("button").click(function () { $(".holcomb, .lunden, .maggie, .rosewood").hide("slow"); ...
0
votes
2answers
310 views

Multiple jQuery sliders moving each div on same page, any way to simplify code?

I have a page that has multiple sliders (from http://www.switchonthecode.com/tutorials/using-jquery-slider-to-scroll-a-div) and since each of them are different divs I just duplicated the code and ...
0
votes
3answers
50 views

How can I simplify my jQuery animation?

How can I simplify my jQuery animation? What is the best way? Code: $("#nav").animate({opacity:0.2},1000); $("#sub_nav").animate({opacity:0.2},1000); $("#user_links").animate({opacity:0.2},1000); ...
0
votes
2answers
126 views

jQuery simplifying code (beginner)

I'm getting to grips with jQuery but find myself repeating code over and over again... Surely there's a simpler way to write this: $('#more-mcr, #more-hilton, #more-lpool').hide(); ...
0
votes
6answers
187 views

Simplify jQuery Selector

I have a selector, "td > a.leftmenuitem:last, div > a.leftmenuitem:last", and I'd like to simplify it a little. I've tried "* > a.leftmenuitem:last", "td, div > a.leftmenuitem:last", and ...