harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (2024)

MotorcyclesDealerships

'); } } // code for show clear icon in input box if($( "#autocomplete_input" ).val().length>0){ $('.aa-ClearButton').show(); $('.ui_filter').show(); } if($( "#autocomplete_input" ).val().length<=0){; $('.aa-ClearButton').hide(); $('.ui_filter').show(); } //code for select filters $('.dealership_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.motorcycle_type').hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.dealership_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','dealership'); } $('.global_search_desktop-page-ul').hide(); $('#autocomplete_input').keydown(); $('#autocomplete_input').focus(); }); $('.motorcycle_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.dealership_type').hasClass('selected')){ $('.dealership_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','motorcycle'); } $('.global_search_desktop-page-ul').hide(); $('#autocomplete_input').keydown(); $('#autocomplete_input').focus(); }); if ( window.location.pathname != '/' ){ $(window).scroll(function (event) { var scroll = $(window).scrollTop(); if(scroll < 7000){ scroll = scroll + 55; scroll = scroll + "px"; $(".ui-widget").css("top",scroll); } }); } if($('.motorcycle_type').hasClass('selected')){ $('.location_filter_search').show(); } }, select: function(event, ui) { var a = {}; let d = ""; let b =""; var redirect_url = ""; if(ui.item._index === 'canary_insider_cycle_keyword_autocomplete'){ let display_title = ui.item._source.manu; if($("#autocomplete_input").val() != "" && $( "#autocomplete_input" ).val() != undefined){ display_title = ui.item._source.manu+" "+ui.item._source.model; } a['view'] = 'motorcycles'; a['manu'] = ui.item._source.manu; if($("#autocomplete_input").val() != "" && $( "#autocomplete_input" ).val() != undefined){ a['model'] = ui.item._source.model; } if(ui.item._source.type != "" && ui.item._source.type != undefined){ a['type'] = ui.item._source.type; } $('#autocomplete_input').val(display_title); $('#autocomplete_input').attr('placeholder',display_title); $('#autocomplete_input').blur(); setTimeout(function() { d = JSON.stringify(a); b = JSON.parse(d); $.post('https://www.cycleinsider.com/ajax/getSearchURL.php', b, redirect_url => { document.location = redirect_url; }); }, 500); }else if(ui.item._index === 'seeall_link'){ a['view'] = 'rvs'; a['manu'] = ui.item._source.manu; $('#autocomplete_input').val(ui.item._source.redirect_url); window.location.href = ui.item._source.redirect_url; }else{ event.preventDefault(e); } }, classes: { "ui-autocomplete": "global_search_desktop-page-ul", }, }).data('ui-autocomplete')._renderItem = function(ul, item){ if(item._index === 'canary_insider_cycle_keyword_autocomplete'){ let display_title = toTitleCase(item._source.manu)+" - "; let display_pill_type = "make"; if($("#autocomplete_input").val() != "" && $( "#autocomplete_input" ).val() != undefined){ display_title = toTitleCase(item._source.manu)+" "+toTitleCase(item._source.model)+" - "; if(item._source.model != "" && item._source.model != undefined){ display_pill_type = "model"; } } var t = String(display_title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + ""+ display_pill_type + '') .appendTo(ul); } if(item._index === "seeall_link"){ var t = String(item._source.title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + '') .appendTo(ul); } if(item._index == '' || item._index == 'canary_insider_dealers'){ return $("

  • ") .data("item.autocomplete",item) .append('No matching results') .appendTo(ul); } }; $('#autocomplete_input_mobile').focus(function(){ $(this).keydown(); }); //autocomplete for mobile$( "#autocomplete_input_mobile" ).autocomplete({ search: function(event, ui) { $(this).removeClass('search_img_icon'); $('.aa-InputWrapperPrefix').addClass('loading_img_icon'); }, source: function( request, response ) { let type = ''; let pathname = window.location.pathname.toLowerCase(); type = "all"; if(localStorage["refresh"] == "true"){ if(pathname.includes("dealership-reviews") != true && pathname.includes("dealerships") != true){ type = 'motorcycle'; localStorage.setItem('type_filter_search','motorcycle'); }else{ type = 'dealership'; localStorage.setItem('type_filter_search','dealership'); } } if($('.motorcycle_type').hasClass('selected')){ type = 'motorcycle'; } if($('.dealership_type').hasClass('selected')){ type = 'dealership'; } $.ajax( { url: "/ajax/getsearchData.php", dataType: "json", type: 'post', data: { search_param: $( "#autocomplete_input_mobile" ).val(), type: type, origin: 'elastic', }, success: function( data ) { //data decoration removing the dublicate data var result = data.success; var listdata = []; var uni = []; var list = JSON.parse(JSON.stringify(result)); $.each(list, function(index, value){ if(type == "all"){ $datacount = 2; }else{ $datacount = 5; } if(value._index === "canary_insider_cycle_keyword_autocomplete"){ let manu_model = value._source.manu; let display_title = value._source.manu; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ display_title = value._source.manu+" "+value._source.brand+" "+value._source.model; } var ele = display_title.replace(/\s+/g,' ').toLowerCase(); if(uni.indexOf(ele) === -1 && listdata.length <= $datacount){ listdata.push(value); uni.push(ele); } } if(value._index === "canary_insider_dealers" && listdata.length <=0){ listdata.push(value); } }); // if (list.length == 0) { // var noResult = { _index: "" }; // listdata.push(noResult); // } let search_text = $("#autocomplete_input_mobile").val(); if(type == "motorcycle" && search_text != ""){ let srch_title = "See all results for "+search_text; let redirect_url = window.location.origin+"/search?q="+search_text; see_all_item = { "_index" : "seeall_link", "_source" :{ "manu" : "", "average_rating":0.0, "id" : 0, "review_count":0, "title": srch_title, "redirect_url": redirect_url } } listdata.push(see_all_item); } response(listdata); } }); }, minLength: 0, open: function() { let pathname = window.location.pathname.toLowerCase(); $('.aa-InputWrapperPrefix').removeClass('loading_img_icon'); $(this).addClass('search_img_icon'); if($("#autocomplete_input_mobile").val() == "" || $("#autocomplete_input_mobile").val() == undefined){ $('ul.ui-autocomplete').prepend('

  • Popular motorcycles

  • '); } if(localStorage["refresh"] == "true"){ if(pathname.includes("dealership-reviews") == true || pathname.includes("dealerships") == true){ $('ul.ui-autocomplete').prepend('

  • MotorcyclesDealerships

    '); } if(pathname.includes("dealership-reviews") != true && pathname.includes("dealerships") != true){ $('ul.ui-autocomplete').prepend('

  • MotorcyclesDealerships

    '); } }else{ if(localStorage['type_filter_search'] === "motorcycle"){ $('ul.ui-autocomplete').prepend('

  • MotorcyclesDealerships

    '); }else if(localStorage['type_filter_search'] === "dealership"){ $('ul.ui-autocomplete').prepend('

  • MotorcyclesDealerships

    '); }else{ $('ul.ui-autocomplete').prepend('

  • MotorcyclesDealerships

    '); } } $('.aa-InputWrapperPrefix').removeClass('loading_img_icon'); $(this).addClass('search_img_icon'); if($( "#autocomplete_input_mobile" ).val().length>0){ $('.ui_filter').show(); $('.aa-ClearButton_mobile').show(); } if($( "#autocomplete_input_mobile" ).val().length<=0){; $('.ui_filter').show(); $('.aa-ClearButton_mobile').hide(); } $('.dealership_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.motorcycle_type').hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.dealership_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','dealership'); } $(".global_search_mobile-page-ul").hide(); $('#autocomplete_input_mobile').autocomplete( "close" ); $('#autocomplete_input_mobile').keydown(); }); $('.motorcycle_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.dealership_type').hasClass('selected')){ $('.dealership_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','motorcycle'); } $(".global_search_mobile-page-ul").hide(); $('#autocomplete_input_mobile').autocomplete( "close" ); $('#autocomplete_input_mobile').keydown(); }); $('.global_search_mobile-page-ul').on( "touchmove", function(event) { $('#autocomplete_input_mobile').blur(); }); if($('.motorcycle_type').hasClass('selected')){ $('.location_filter_search').show(); } }, close: function(event, ui) { $(".global_search_mobile-page-ul").show(); }, select: function(event, ui) { var a = {}; let d = ""; let b =""; var redirect_url = ""; $(".aa-DetachedSearchButtonPlaceholder").text(""); if(ui.item._index === 'canary_insider_cycle_keyword_autocomplete'){ let display_title = ui.item._source.manu; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ display_title = ui.item._source.manu+" "+ui.item._source.model; } a['view'] = 'motorcycles'; a['manu'] = ui.item._source.manu; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ a['model'] = ui.item._source.model; } if(ui.item._source.type != "" && ui.item._source.type != undefined){ a['type'] = ui.item._source.type; } $('#autocomplete_input_mobile').val(display_title); $('#autocomplete_input_mobile').attr('placeholder',display_title); $('#autocomplete_input_mobile').blur(); $(".aa-DetachedSearchButtonPlaceholder").text(display_title); setTimeout(function() { d = JSON.stringify(a); b = JSON.parse(d); $.post('https://www.cycleinsider.com/ajax/getSearchURL.php', b, redirect_url => { document.location = redirect_url; }); }, 500); }else if(ui.item._index === 'seeall_link'){ a['view'] = 'rvs'; a['manu'] = ui.item._source.manu; $('#autocomplete_input_mobile').val(ui.item._source.redirect_url); window.location.href = ui.item._source.redirect_url; }else{ event.preventDefault(e); } $('.aa-ClearButton').hide(); }, //adding new custome class classes: { "ui-autocomplete": "global_search_mobile-page-ul", }, }).data('ui-autocomplete')._renderItem = function(ul, item){ if(item._index === 'canary_insider_cycle_keyword_autocomplete'){ let display_title = toTitleCase(item._source.manu)+" - "; let display_pill_type = "make"; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ display_title = toTitleCase(item._source.manu)+" "+toTitleCase(item._source.model)+" - "; if(item._source.model != "" && item._source.model != undefined){ display_pill_type = "model"; } } var t = String(display_title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + ""+ display_pill_type + '') .appendTo(ul); } if(item._index === "seeall_link"){ var t = String(item._source.title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + '') .appendTo(ul); } if(item._index == '' || item._index == 'canary_insider_dealers'){ return $("

  • ") .data("item.autocomplete",item) .append('No matching results') .appendTo(ul); } }; $('.mobile_view_inputbox').on( "click", function() { $('body').addClass('aa-Detached'); $('.mobile_globale_search').show(100); $('header').hide(100); $('#autocomplete_input_mobile').keydown(); $('#autocomplete_input_mobile').filter(':visible').focus(); }); $('.aa-DetachedCancelButton').on( "click", function() { $('body').removeClass('aa-Detached'); $('.mobile_globale_search').hide(100); $('header').show(100); $('.global_search_desktop-page-ul').hide(300); $('.global_search_mobile-page-ul').hide(300); }); $(window).on('load', function(){ localStorage.setItem('type_filter_search',''); }); $('.aa-ClearButton_mobile').on( "click", function(e) { $(this).hide(); $('#autocomplete_input_mobile').val(""); $('#autocomplete_input_mobile').keydown(); $('#autocomplete_input_mobile').filter(':visible').focus(); $(".aa-DetachedSearchButtonPlaceholder").text(""); $('.aa-DetachedSearchButtonPlaceholder').text("Search for an RV or dealership"); return false; }); $('.aa-ClearButton').on( "click", function(e) { $(this).hide(); $("#autocomplete_input").val(""); $('#autocomplete_input').keydown(); $("#autocomplete_input").focus(); return false; });

    • All Motorcycle Reviews
    • >
    • harley-davidson
    • >
    • xlh sportster 883...
    • >

    MOTORCYCLE Type

    Make and model

    Year

    4.3 (30&nbspreviews)

    Write a review

    Reliability

    4.3

    Overall quality

    4.3

    Performance

    4.1

    Comfort

    4.1

    For sale near youMatching Motorcycle for sale near you
    ......$0......$0......$0......$0

    Top 10 Motorcycles

    Reviews

    Stars Refinement

    30 ratings and reviews

    Voted most helpful

    review

    bilbo

    LR, Arkansas

    Reviewed on February 1, 2011

    Motorcycle reviewed 2001 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (12)

    5.0

    My last Sportster reference was a '69 XLCH and it was pretty bad. I took this '01 in on a trade and thought I might ride it a little and then sell it, but it's a great little bike and I think I'm going to keep it. I don't understand where all the stories about horrible vibration, poor handling and lack of... read more

    My last Sportster reference was a '69 XLCH and it was pretty bad. I took this '01 in on a trade and thought I might ride it a little and then sell it, but it's a great little bike and I think I'm going to keep it. I don't understand where all the stories about horrible vibration, poor handling and lack of comfort are coming from. This thing is as smooth as glass at 65 mph and has only a very slight, very tolerable vibration at 80+ mph. I've ridden it at 80 for over an hour at a time. It's not a sport bike, but it will still go down any twisty road I can find in North Arkansas at twice the legal speed limit or better. I've got about 15 bikes in the garage and find myself throwing a leg over this one more often. Maybe this is just a good one?

    Show less

    Helpful (2)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (13)Report

    Voted most helpful

    review

    Derrick

    Houston, Texas

    Reviewed on July 31, 2009

    Motorcycle reviewed 2003 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (14)

    5.0

    I bought my 883 Hugger last year with only 233 miles on her. I love this bike, we have been on 400 mile trips in a single day and I am usually the one that wants to go put some more on. The bike corners great and is low enough to the ground that it doesn't feel top heavy. I love my sporty and won't trade it f... read more

    I bought my 883 Hugger last year with only 233 miles on her. I love this bike, we have been on 400 mile trips in a single day and I am usually the one that wants to go put some more on. The bike corners great and is low enough to the ground that it doesn't feel top heavy. I love my sporty and won't trade it for the world.

    Reliability

    5.0

    Quality

    5.0

    Performance

    4.0

    Comfort

    5.0

    Show less

    Helpful (2)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (15)Report

    Voted most helpful

    review

    Dayne

    Lafayette, Indiana

    Reviewed on March 1, 2009

    Motorcycle reviewed 2000 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (16)

    5.0

    I purchased my bike two years ago. It was sitting in a garage for four years and had never been started. It still had the original battery. After putting the battery on a charger, the bike started and ran perfectly. I then took the bike on a test drive and fell in love. The bike has had no problems. It rides,... read more

    I purchased my bike two years ago. It was sitting in a garage for four years and had never been started. It still had the original battery. After putting the battery on a charger, the bike started and ran perfectly. I then took the bike on a test drive and fell in love. The bike has had no problems. It rides, looks and sounds great. Vibration is high on the highway, but other than that I have no complaints. This is the perfect bike for cruising around town and going on short trips. It is very dependable and I recommend it as a great starter bike.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (0)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (17)Report

    Voted most helpful

    review

    johnny

    oak harbor, Washington

    Reviewed on March 20, 2007

    Motorcycle reviewed 1999 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (18)

    5.0

    I HAVE HAD PEARL NOW AUG 2001. BOUGHT STOCK AND SOON HAD STAGE 2KIT STRAIGHT PIPES AND FWD CONTROLS. FWD CONTROLS MUST FOR MY HEIGHT. GREAT HANDLING AND VERY FAST THROUGH TURNS. ONLY PROBLEM IS I OUT GREW THE POWER. PAST 19 MONTHS IN SHOP BECAUSE OF EXPEDITION. (3WEEKS ACTUAL WORK) NO LEAKS AND ABSOLUTE... read more

    I HAVE HAD PEARL NOW AUG 2001. BOUGHT STOCK AND SOON HAD STAGE 2KIT STRAIGHT PIPES AND FWD CONTROLS. FWD CONTROLS MUST FOR MY HEIGHT. GREAT HANDLING AND VERY FAST THROUGH TURNS. ONLY PROBLEM IS I OUT GREW THE POWER. PAST 19 MONTHS IN SHOP BECAUSE OF EXPEDITION. (3WEEKS ACTUAL WORK) NO LEAKS AND ABSOLUTELY NO PROBLEMS. HANDLES WELL IN RAIN (A+ IN WA.) NOT BAD WITH A PASSENGER FOR BIKE SIZE. EVEN POWER WITH SINGLE AND PASS.

    Reliability

    5.0

    Quality

    5.0

    Performance

    4.0

    Comfort

    5.0

    Show less

    Helpful (0)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (19)Report

    Voted most helpful

    review

    Eric

    Elk Point, South Dakota

    Reviewed on February 28, 2007

    Motorcycle reviewed 2002 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (20)

    5.0

    All I have to say is that I'm tired of you guys crying about a Sportster not being comfortable. It's a damn motorcycle for christ sakes. If you want comfort, you should have been smart enough to buy a Softail in the first place. Anyway, I think the Sporster is an awesome bike and there is a reason it has bee... read more

    All I have to say is that I'm tired of you guys crying about a Sportster not being comfortable. It's a damn motorcycle for christ sakes. If you want comfort, you should have been smart enough to buy a Softail in the first place. Anyway, I think the Sporster is an awesome bike and there is a reason it has been around for 50 frickin years. I love mine and love riding in general. It is the most quality and reliable motorcycle I have ever owned.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    4.0

    Show less

    Helpful (1)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (21)Report

    For sale near youMotorcycles for sale near you

    Voted most helpful

    review

    mark

    Sanford, North Carolina

    Reviewed on February 8, 2007

    Motorcycle reviewed 2003 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (22)

    5.0

    I was lucky enough to find this bike with only 186 miles on it. Since then I have put an additional 300 miles on it. I love this bike. I like riding it almost as much as riding my Dyna. Get one if you can.... read more

    I was lucky enough to find this bike with only 186 miles on it. Since then I have put an additional 300 miles on it. I love this bike. I like riding it almost as much as riding my Dyna. Get one if you can.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (1)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (23)Report

    Voted most helpful

    review

    John

    Portland, Maine

    Reviewed on August 24, 2006

    Motorcycle reviewed 2001 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (24)

    5.0

    My father bought this new in 2001, and I bought it from him in late 2003. I've put over 8,000 miles on it since then without a problem. It is my daily driver to work when the temp is above 30 degrees, and has never failed me. Being tall, the ride can be somewhat uncomfortable after riding for a couple hours a... read more

    My father bought this new in 2001, and I bought it from him in late 2003. I've put over 8,000 miles on it since then without a problem. It is my daily driver to work when the temp is above 30 degrees, and has never failed me. Being tall, the ride can be somewhat uncomfortable after riding for a couple hours at a time, but about the time my butt starts to hurt, it is time to get some gas anyway. Since I installed pipes and a new airfilter (and new jets), I am averaging 60mpg. I ride on 95 and 295 at speeds of 80mph regularly without a problem.

    Reliability

    5.0

    Quality

    5.0

    Performance

    4.0

    Comfort

    4.0

    Show less

    Helpful (1)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (25)Report

    Voted most helpful

    review

    TED

    Bloomfield Hills, Michigan

    Reviewed on February 12, 2005

    Motorcycle reviewed 2003 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (26)

    5.0

    I love it, I just recently purchased it and have done a few upgrades (hypercharger, Vance&#038;Hines pipes, chrome accessories, rejetted carb) and it runs great and looks awesome. This is my first Harley and I have ridden my Father's Dyna and Softtail, and although it is not as loud considering it's half... read more

    I love it, I just recently purchased it and have done a few upgrades (hypercharger, Vance&#038;Hines pipes, chrome accessories, rejetted carb) and it runs great and looks awesome. This is my first Harley and I have ridden my Father's Dyna and Softtail, and although it is not as loud considering it's half the engine size it still sounds like a true Harley. I recommend this bike to anyone who is considering the buy. It's a 2003 883 Sportster Classic. I hope all of you have as much fun as I am having with my bike.

    Reliability

    5.0

    Quality

    5.0

    Performance

    4.0

    Comfort

    4.0

    Show less

    Helpful (0)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (27)Report

    Voted most helpful

    review

    D. A. Guest Jr

    Hamptonville, North Carolina

    Reviewed on July 31, 2003

    Motorcycle reviewed 2003 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (28)

    5.0

    I bought this bike as my first street bike. I was always a dirt and Moto cross rider. I am 44 years old and the wife and I decided to get a bike to cruise the back roads and the Blue Ridge Parkway here in NC. I put the custom touring seat on it and throw over saddle bags. I have really enjoyed it so far had i... read more

    I bought this bike as my first street bike. I was always a dirt and Moto cross rider. I am 44 years old and the wife and I decided to get a bike to cruise the back roads and the Blue Ridge Parkway here in NC. I put the custom touring seat on it and throw over saddle bags. I have really enjoyed it so far had it 3 weeks and have 900 miles on it. no problems would recomend it to anyone as a first bike.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (0)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (29)Report

    Voted most helpful

    review

    hugger03rider

    mount vernon, Indiana

    Reviewed on July 6, 2003

    Motorcycle reviewed 2003 Harley-Davidson XLH Sportster 883 Hugger harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (30)

    5.0

    Took delivery may 16, 2003. I'm 5'2" tall, 110lbs. and bike is just right for me. Just had my 1000 mile service and added SE II pipes and had carb re-jetted. Made a big difference. I have a bit over 1400 miles. Would have more if we didn't get so darn much spring rain.... read more

    Took delivery may 16, 2003. I'm 5'2" tall, 110lbs. and bike is just right for me. Just had my 1000 mile service and added SE II pipes and had carb re-jetted. Made a big difference. I have a bit over 1400 miles. Would have more if we didn't get so darn much spring rain.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (0)

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (31)Report

    • 1
    • 2
    • 3
    • 1 - 10 of 30 reviews

    For sale near youMore Matching Motorcycles for sale near you
    ......$0......$0......$0......$0......$0

    ×

    Contact Dealership

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (37)

    Message Sent!

    Be on the lookout for an email from the dealership.

    Do you have a motorcycle experience to share?

    Help others by leaving a review for a motorcycle or dealership.

    Write a Review

  • ×

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (38)

    Thank you, your report has been submitted

    harley-davidson xlh sportster 883 hugger Motorcycle Reviews on Cycle Insider (2024)
    Top Articles
    5 Must-Have Components of a Recipe
    How To Make Money in a Recession (2024) - Shopify
    Unit 3 Lesson 3 Joshua's Law
    Fitfaith Ablackweb
    Chesterfield County Detention Center SC Recent Arrests and Bookings
    Chesterfield County Detention Center, SC Inmate Search: Roster & Mugshots
    Parentvue Clarkston
    Osrs Optimal House Layout
    30 Best Female Cartoon Characters of All Time
    60 Best Cartoon Characters Of All Time, Ranked - Looper
    Warframe Duviri Puzzle Guide for Owl Statues and Archarbor Puzzle
    Sonnenaktivität & Sonneneruptionen Daten Live - Sonnenwind
    Latest Posts
    LibGuides: HIS 211 - U.S. History: Reconstruction to the Present - Textbook: The Depths of the Great Depression
    EASY Nutella Macarons Recipe (2-ingredient Filling)
    Article information

    Author: Kerri Lueilwitz

    Last Updated:

    Views: 5837

    Rating: 4.7 / 5 (67 voted)

    Reviews: 82% of readers found this page helpful

    Author information

    Name: Kerri Lueilwitz

    Birthday: 1992-10-31

    Address: Suite 878 3699 Chantelle Roads, Colebury, NC 68599

    Phone: +6111989609516

    Job: Chief Farming Manager

    Hobby: Mycology, Stone skipping, Dowsing, Whittling, Taxidermy, Sand art, Roller skating

    Introduction: My name is Kerri Lueilwitz, I am a courageous, gentle, quaint, thankful, outstanding, brave, vast person who loves writing and wants to share my knowledge and understanding with you.