' ); }); $("#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/20210126235833/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/20210126235833/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/20210126235833/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/20210126235833/https://www.hwnninjurylaw.com/testimonials/
2019 Lexington's Personal Injury Lawyer of the Year Start Your Consultation

Testimonials

“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!

– Thomas Sacca


“Exceptional Work”

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


“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.
– John Steele


“We are at peace with the verdict and totally endorse this outstanding law firm.”

Their dedication, legal expertise and compassion were amazing. We are at peace with the verdict and totally endorse this outstanding law firm.


“If you want great service from great people, this is the place to go.”

If you want great service from great people, this is the place to go. They handled my case in a timely manner and kept me up-to-date every step of the way.


“Best lawyers around!!”

Forever grateful to Libby’s team who loves our family like their own. Best lawyers around!!


“They are amazing and fight for you like you’re family.”

I have nothing but positive things to say about my experience with Hare/Wynn and the attorney in my case, Jonathan Fannin. He went above and beyond my expectations and was a sincere friend through it all, not just my attorney. I wasn’t sure what to do after my accident but he held my hand through it all and worked diligently to make sure I was ok. I cannot express enough, the gratitude I have for him. I would highly recommend him and his firm to fight for you and help you all the way to the end. They are amazing and fight for you like you’re family.


“Totally outstanding lawyer at an equally outstanding firm!”

Jamie Moncus did an amazing job assisting my mother. Totally outstanding lawyer at an equally outstanding firm!


“I absolutely loved the atmosphere there.”

I absolutely loved the atmosphere there. Everyone is very hard working and once they have their mind set on something they will achieve it.


“They made it so much easier”

I can’t begin to tell you how wonderful this firm was to us. The horrible things my husband went through. They made it so much easier. We are so thankful to all that helped. We love you guys.


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