Note: Rating is only available for registered users.
About Shein
Get Your Entire Shein Order Including Shipping for FREE! (Can Use it Unlimited Times)
Savings Tips:
Up to 60% Off Select Styles - Join The Shein Mailing List To Receive Insider Info on Sales & New Arrivals
Shein Coupons & Deals
Save with Shein Offers.
% 100OFF
code
Shein 100% Off Entire Order
Verified 1 day ago • 68,000 uses today
Show Coupon Code
$(document).ready(function(){
$('#search').on("keyup input", function(){
/* Get input value on change */
var inputVal = $(this).val();
var resultDropdown = $(this).siblings(".result");
if(inputVal.length){
$.get("backend-search.html", {term: inputVal}).done(function(data){
// Display the returned data in browser
resultDropdown.html(data);
});
} else{
resultDropdown.empty();
}
});
// Set search input value on click of result item
$(document).on("click", ".result p", function(){
$(this).parents(".search-form").find('input[type="text"]').val($(this).text());
$(this).parent(".result").empty();
});
});