' ); }); $("#videomodal").on("hidden.bs.modal", function () { var $this = $(this).find("iframe"); tempSrc = $this.attr("src"); $this.attr("src", ""); $this.attr("src", tempSrc); }); $("#homepagevideo a").on("click", function () { $("#yt-player").html( ' ' ); }); /*Homepage logo */ $(".mobile-logos").slick({ slidesToShow: 7, slidesToScroll: 1, autoplaySpeed: 3000, autoplay: true, dots: false, prevArrow: false, nextArrow: false, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 4, slidesToScroll: 1, }, }, { breakpoint: 768, settings: { slidesToShow: 3, slidesToScroll: 1, }, }, { breakpoint: 500, settings: { slidesToShow: 1, slidesToScroll: 1, }, }, ], }); // Slick-clone is not lazyloading the images causing them to not work this is a fx // We are removing data-src and data-srcset and adding the image src itself for the cloned version $(".mobile-logos .slick-cloned img").each(function () { var imageSource = $(this).attr("data-src"); $(this) .attr("src", imageSource) .removeAttr("data-src data-srcset data-sizes"); }); /*Attorney page slider */ $(".attorneys-slider").slick({ slidesToShow: 6, slidesToScroll: 1, autoplaySpeed: 3000, autoplay: false, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 5, slidesToScroll: 1, }, }, { breakpoint: 1025, settings: { slidesToShow: 3, slidesToScroll: 1, }, }, { breakpoint: 768, settings: { slidesToShow: 1, slidesToScroll: 1, }, }, ], }); $(".community-logos-slider").slick({ slidesToShow: 7, slidesToScroll: 1, autoplaySpeed: 3000, autoplay: false, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 5, slidesToScroll: 1, }, }, { breakpoint: 1025, settings: { slidesToShow: 3, slidesToScroll: 1, }, }, { breakpoint: 768, settings: { slidesToShow: 1, slidesToScroll: 1, }, }, ], }); // Reviews Schema $(".carousel-slider-slick").slick({ slidesToShow: 1, slidesToScroll: 1, autoplaySpeed: 3000, autoplay: true, dots: false, prevArrow: false, nextArrow: false, adaptiveHeight: true, }); /*Changing list background Cases we handle section */ var caseHandle = $(".case-handle"); var caseHandleBackground = caseHandle.css("background-image"); // saving the main background image url ( needed if we want to return back to the main image mouse-leave) caseHandle.find("a").hover(function changebackground() { var anchorbackground = $(this).data("name"); // Grabing the data-name from anchor tags caseHandle.css({ background: 'url("' + anchorbackground + '")', "background-size": "cover", "background-position": "center center", "background-repeat": "no-repeat", }); // using throttle to allow only 1 click // Function to Return the original background when the mouse leaves the link /* }, function(){ caseHandle.css({background: caseHandleBackground, 'background-size':'cover','background-position':'center center', 'background-repeat': 'no-repeat'}); */ //returning the main background on mouse leave }); // Loading Lazy Images $("p").each(function () { var $this = $(this); if ($this.html().replace(/\s| /g, "").length == 0) $this.remove(); }); }); // one scroll end /*HomePage New Banner*/ $(document).ready(function () { $('.tabs .tab-link').click(function(){ var tab_id = $(this).attr('data-tab'); $('.tabs .tab-link').removeClass('current'); $('.tab-cont').removeClass('current'); $(this).addClass('current'); $("#"+tab_id).addClass('current'); }); $(".navbar-toggle").click(function () { $(this).toggleClass("open"); $(".navbar-default .navbar-nav").slideToggle(""); }); $(".back-top a").hide(); $(window).scroll(function () { if ($(this).scrollTop() > 100) { $(".back-top a").fadeIn(); } else { $(".back-top a").fadeOut(); } }); $(".back-top a").click(function () { $("html, body").animate( { scrollTop: 0, }, 800 ); return false; }); (function () { "use strict"; var toggles = document.querySelectorAll(".navbar-toggle"); for (var i = toggles.length - 1; i >= 0; i--) { var toggle = toggles[i]; toggleHandler(toggle); } function toggleHandler(toggle) { toggle.addEventListener("click", function (e) { e.preventDefault(); this.classList.contains("is-active") === true ? this.classList.remove("is-active") : this.classList.add("is-active"); }); } })(); var TopbarOffset = $(".primery-header").offset(); // getting the new offset for the topbar after the expand to avoid a jump when expanded! $(".warning-message-accordion input").click(function () { var warning_message_height = $(this).height(); console.log(warning_message_height); if ($(".homepage-header").hasClass("message-clicked")) { $(".primery-header.homepage-header").css("margin-top", "110px"); $(".homepage-header").removeClass("message-clicked"); } else { $(".primery-header.homepage-header").css( "margin-top", warning_message_height + 60 ); $(".homepage-header").addClass("message-clicked"); } TopbarOffset = $(".primery-header").offset(); console.log(TopbarOffset); }); $(window).on("scroll", function () { if ($(this).scrollTop() > TopbarOffset.top) { $(".primery-header").addClass("fixed-header"); } else { $(".primery-header").removeClass("fixed-header"); } }); var windowsize = $(window).width(); if (windowsize > 768) { ajax_fonts(); } else { setTimeout("ajax_fonts()", 2500); } // AOS intialization AOS.init({ startEvent: "load", disable: "mobile", }); var myLazyLoad = new LazyLoad({ elements_selector: ".lazy", threshold: 100 }); new LazyLoad({ elements_selector: "div", callback_enter: function(element) {}, callback_set: function(element) {}, callback_error: function(element) { element.src = "https://web.archive.org/web/20210127012805/https://placeholdit.imgix.net/~text?txtsize=21&txt=Fallback%20image&w=220&h=280"; } }); new LazyLoad({ elements_selector: "section", callback_enter: function(element) {}, callback_set: function(element) {}, callback_error: function(element) { element.src = "https://web.archive.org/web/20210127012805/https://placeholdit.imgix.net/~text?txtsize=21&txt=Fallback%20image&w=220&h=280"; } }); /* $(window).scroll(function () { if ($(window).scrollTop() > 1) { $('.primery-header').addClass('fixed-header'); } else { $('.primery-header').removeClass('fixed-header'); } }); */ $(window).scroll(function () { if ($(this).scrollTop() > 20) { $(".addnum").addClass("numscroll"); } else { $(".addnum").removeClass("numscroll"); } }); // Equal Height Js (equalheight = function (a) { var e, b = 0, c = 0, d = new Array(); $(a).each(function () { if ( ((e = $(this)), $(e).height("auto"), (topPostion = e.position().top), c != topPostion) ) { for (currentDiv = 0; currentDiv < d.length; currentDiv++) d[currentDiv].height(b); (d.length = 0), (c = topPostion), (b = e.height()), d.push(e); } else d.push(e), (b = b < e.height() ? e.height() : b); for (currentDiv = 0; currentDiv < d.length; currentDiv++) d[currentDiv].height(b); }); }), $(window).on("load resize ready", function () { equalheight(".eq-height"); }); $(".flex-box-item").mouseenter(function () { $(this).addClass("flex-box-item-hovered"); $(this).find("a").addClass("btn btn-blue"); }); $(".flex-box-item").mouseleave(function () { $(this).removeClass("flex-box-item-hovered"); $(this).find("a").removeClass("btn btn-blue"); }); // var src = $("#modal-container-1").find('iframe').attr('src'); $(".button").click(function () { var buttonId = $(this).attr("id"); $("#modal-container-1").removeAttr("class").addClass(buttonId); $("body").addClass("modal-active"); // $('#modal-container-1').find('iframe').attr('src', src); }); $("#modal-container-1").click(function () { $(this).addClass("out"); $("body").removeClass("modal-active"); // $(this).find('iframe').attr('src', ''); var memory = $(this).html(); $(this).html(memory); }); }); function openVideo(event) { $("#videomodal").modal("show"); $("#yt-player").html( '' ); } function ajax_fonts() { $.ajax({ beforeSend: function (xhr) { xhr.overrideMimeType("application/octet-stream"); }, success: function (data) { var script = document.createElement("script"); script.async = true; script.type = "text/javascript"; var target = "https://web.archive.org/web/20210127012805/https://www.clickcease.com/monitor/stat.js"; script.src = target; var elem = document.head; elem.appendChild(script); } }); }

The Wayback Machine - https://web.archive.org/web/20210127012805/https://www.hwnninjurylaw.com/cases-we-handle/

+125 Combined Years of Experience You Can Trust

' $("#four").one('click', function(){ $('#new-player').html(iframe); }); });

Cases We Handle in Lexington, KY

When you get into an unexpected accident, your life can change in an instant. When someone else is responsible for your injuries, you have the right to hold them accountable. You deserve to walk away with maximum compensation. The best way to do that is by working with lawyers who know personal injury law in Kentucky inside and out.

At Hare, Wynn, Newell & Newton, LLP, all we do is personal injury law. And, it’s all we’ve done since our law firm opened its doors back in 1890. Since then, our attorneys have been dedicated to helping accident and injury victims across the nation and right here in Lexington, KY. When the people of Lexington get hurt, our personal injury attorneys are here to help them make things right.

We represent clients in all personal injury matters, including:

 

 

For more information about our personal injury practice areas and how our team might be able to help you navigate an insurance claim or lawsuit, please don’t hesitate to give us a call to arrange a free consultation. We’re always standing by – especially when you need us most.

WordPress is detecting too few <!--nextpage--> tags in the content of this page and as a result some content areas may be empty.

Hear from Our Clients

See what our clients are saying about working with us.

“Constant Contact”

Couldn’t be more please with my experience with Hare, Wynn, Newell and Newton! I changed my case representation to them after a poor experience with another lawyer and was incredibly happy that I did! Mr. Jonathan Fannin did a superb job on my case resulting in a quick and favorable settlement in my favor. He was in constant contact with me and I was immediately informed on anything going on with my case. Cannot say enough about Hare, Wynn, Newell and Newton! I would highly recommend them!

“Exceptional Work”

Brian Vines did exceptional work for me. Would definitely use this law firm again.

“Very Professional Law Firm”

I had an excellent experience with this very professional law firm. Brian and Matt were very professional and approached my personal injury case with diligence and urgency. They were very good to work with and worked hard to provide me the maximum settlement. I would highly recommend this firm and would use them again if needed.

Separator
ABA Defending Logo
Multi-Million Dollar Advocate Forum
Best Lawyers Logo
SuperLawyers Logo
American Justice Logo
National Trial Lawyers Logo
Expertise Logo 2020