# Compare

## Compare vehicles


					
													
							
											
				
									
						[
							
								
																	
								![Empty](https://ndautogroup.com/wp-content/plugins/motors-car-dealership-classified-listings/assets/elementor/img/compare-empty.jpg)
							
							Add Car To Compare
						](https://ndautogroup.com/inventory/)
					
									
						[
							
								
																	
								![Empty](https://ndautogroup.com/wp-content/plugins/motors-car-dealership-classified-listings/assets/elementor/img/compare-empty.jpg)
							
							Add Car To Compare
						](https://ndautogroup.com/inventory/)
					
									
						[
							
								
																	
								![Empty](https://ndautogroup.com/wp-content/plugins/motors-car-dealership-classified-listings/assets/elementor/img/compare-empty.jpg)
							
							Add Car To Compare
						](https://ndautogroup.com/inventory/)
					
							 
			
				
											
							
																											
																						
												Make											
										
																																				
																						
												Model											
										
																																				
																						
												Condition											
										
																																				
																						
												Body											
										
																																				
																						
												Year											
										
																																				
																						
												Transmission											
										
																																				
																						
												Mileage											
										
																																				
																						
												Engine											
										
																																				
																						
												Exterior Color											
										
																																				
																						
												Interior Color											
										
																																				
																						
												Fuel type											
										
																																				
																						
												Drive											
										
																								
						
									
															
							
								
																														
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																											
							
						
																				
							
								
																														
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																											
							
						
																				
							
								
																														
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																																								
												 
											
																											
							
						
												 
		
		
			

	
		
			[
				
					
											
					![Empty](https://ndautogroup.com/wp-content/plugins/motors-car-dealership-classified-listings/assets/elementor/img/compare-empty.jpg)
				
				Add Car To Compare
			](https://ndautogroup.com/inventory/)
		
	

	
					
				
					
																					
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																												
									 
								
																		
				
			
			

	
		jQuery(document).ready(function ($) {

			var heigth = 0;
			$('.compare-values table tbody tr td').each(function(){
				heigth = $(this).height();

				$('.' + $(this).attr('data-value')).each(function () {
					if($(this).height() > heigth || heigth > 0) {
						heigth = $(this).height() + 18;
						$('.' + $(this).attr('data-value')).css('height', heigth + 'px');
					}
				});
			});

			$('.compare-value-hover').on({
				mouseenter: function () {
					var dataValue = $(this).data('value');
					$('.compare-value-hover[data-value = ' + dataValue + ']').addClass('hovered');
				},
				mouseleave: function () {
					$('.compare-value-hover').removeClass('hovered');
				}
			});
		})