Alarm Action
|
Customer Photos Be the first to Upload A Photo of this product!
Customer Videos Be the first to Upload A Video of this product! $(“img.lazy_review_pic”).lazyload({
placeholder: “//content1.geekbuying.com/V1.4/en/images/geek_loading.png”,
threshold: 200,
skip_invisible: false,
effect: “fadeIn”,
event: “scroll”
});
Customer Reviews
5 star |
|
0 |
4 star |
|
0 |
3 star |
|
0 |
2 star |
|
0 |
1 star |
|
0 |
Write A Review
All (0)
Images (0)
Videos (0)
function date2str(x, y) {
var z = {
y: x.getFullYear(),
M: x.getMonth() + 1,
d: x.getDate(),
h: x.getHours(),
m: x.getMinutes(),
s: x.getSeconds()
};
return y.replace(/(y+|M+|d+|h+|m+|s+)/g, function (v) {
return ((v.length > 1 ? “0” : “”) + eval(‘z.’ + v.slice(-1))).slice(-(v.length > 2 ? v.length : 2))
});
}
var pagesize=5;
var ReviewPagesize=10;
//
function GetReviewList(pageIndex) {
var selectType=$(“.review_select_dd.actived”).eq(0).attr(“selectType”);
if (selectType==undefined) {selectType=”All”;}
var _page=pageIndex==undefined?1:pageIndex;
var ProductionId = $(“#inputProductId”).val();
var length = $(“#reviews ul li”).length;
if (ProductionId != null && ProductionId != typeof (undefined) && length == 0) {
$(“#reviewList_”+selectType).html(“”);
$.getJSON(“/Product/GetReview”, { “ProductionId”: ProductionId,”selectType”:selectType,”Pagesize”:ReviewPagesize, “page” :_page}, function (data) {
if (data!=null) {
if (data.first==1) {
$(“.review_select_dd[selectType=’All’]”).find(“span”).eq(0).text(data.ProductReviewCount);
$(“.review_select_dd[selectType=’Images’]”).find(“span”).eq(0).text(data.ProductReviewImagesCount);
$(“.review_select_dd[selectType=’Vedio’]”).find(“span”).eq(0).text(data.ProductReviewVedioCount);
}
else {
$(“.review_select_dd[selectType='”+selectType+”‘]”).find(“span”).eq(0).text(data.ProductReviewCount);
}
var htmlstr = “”;
var j = 0;
if(data.Reviews == “”)
{
$(“#reviewList_”+selectType).html(“Temporarily no reviews”);
}
else
{
$(“#reviewList_”+selectType).html(“”);
}
$.each(data.Reviews, function (i, item) {
j=i;
htmlstr = “”;
htmlstr += “
“;
htmlstr += “
” + item.UserName + “”;
if (item.CountryCode!=null && item.CountryCode!=””) {
htmlstr +=””
}
htmlstr += ” “;
htmlstr += “
“;
htmlstr += “
“;
htmlstr += “
“+item.Description.Other+””;
htmlstr += “
“;
if (item.VideoUrl != “” && item.VideoUrl !=null) {
htmlstr += “
“;
}
if (item.ReviewPictures!=null&& item.ReviewPictures.length > 0) {
htmlstr += “
“;
for (var i = 0; i < item.ReviewPictures.length; i++) {
if(item.ReviewPictures[i].PictureUrl!=null && $.trim(item.ReviewPictures[i].PictureUrl)!="")
{
htmlstr += "
- “;
}
}
htmlstr += “”;
}
htmlstr += “”;
htmlstr += “
“;
htmlstr += “” + item.EnToUsCreationTime + “”;
htmlstr += “
“+(item.CountIsHelpfulParticipant==1?(item.HelpfulCount>0?item.HelpfulCount:1):item.HelpfulCount)+” “+(item.CountIsHelpfulParticipant==0?(item.NoHelpfulCount>0?item.NoHelpfulCount:1):item.NoHelpfulCount)+””;
htmlstr += “
“+ ShowCommentCount(item.CommentCount) +””;
htmlstr += “
Add a comment”;
htmlstr += “”;
htmlstr += “
“;
htmlstr+=”
“;
htmlstr+=””;
htmlstr+=” 0/500″;
htmlstr+=”
“;
htmlstr+=””;
htmlstr+=””;
htmlstr+=”Post comment”;
htmlstr+=””;
htmlstr+=””;
htmlstr+=””;
htmlstr+=””;
htmlstr+=”
Sign in to comment”;
htmlstr+=””;
htmlstr += “
“;
htmlstr += “”;
htmlstr += “”;
htmlstr += “”;
htmlstr += “”;
$(“#reviewList_”+selectType).append(htmlstr);
});
if (pageIndex==undefined) {
LoadProductreviews_laypage(data.ProductReviewCount,selectType);
}
else {
var t = $(‘.review_select’).offset().top;
$(“html,body”).animate({ scrollTop: t-70}, 500);
}
var geek_review=new LightBoxs(selectType);
geek_review.init();
$(“.review_comments_content”).each(function(){
var textLen= $(this).siblings(“.review_len”).find(“.textLen”);
$(this).keydown(function(){
var review_len=$(this).val().length;
textLen.text(review_len);
})
$(this).keyup(function(){
var review_len=$(this).val().length;
textLen.text(review_len);
})
})
}
});
}
}
function ShowCommentCount(CommentCount)
{
if (CommentCount==1) {
return “1 Comment”;
}
else if(CommentCount>1){
return CommentCount+” Comments”;
}
else {
return “Comment”;
}
}
var Isloading=false;
function IsHelpful(obj){
if (Isloading) {
return false;
}
Isloading=true;
var _this=$(obj);
var CountIsHelpful=_this.attr(“CountIsHelpful”);
showloading(true,’loading’);
var ReviewID=_this.attr(“ReviewID”);
var IsUp=_this.attr(“IsUp”);
var error= “Sorry, Operation failed. Please try again after refresh!”;
$.ajax({
url:”/ProductReview/IsThumbsUp”,
data:{“id”:ReviewID,”help”:IsUp},
datatype:”json”,
success:function(data){
Isloading=false;
hideloading();
if (data!=null) {
if (data.ret==”1″) {
if (data.Helpful!=null) {
$(“.review_zan[ReviewID='”+ReviewID+”‘]”).html(“ “+data.Helpful.HelpfulCount+” “+data.Helpful.NoHelpfulCount+””)
}
else {
window.location.reload();
}
}
else if(data.ret==”-1″){
$.curContent.gkAlert(“One operation only”);
}
else if(data.ret==”-2″){
$.curContent.gkAlert(error);
}
else if(data.ret==”-3″){
jbCart.tools.loginDiog();
return false;
}
else {
$.curContent.gkAlert(error);
}
}
else {
$.curContent.gkAlert(error);
}
},
error:function(){
Isloading=false;
$.curContent.gkAlert(“Sorry, the operation timed out. Please try again.”);
hideloading();
},
complete:function(){
}
});
}
//
var LoadProductreviews_laypage = function(Currentcount, selectType)
{
layui.use([‘laypage’, ‘layer’], function(){
var laypage = layui.laypage
,layer = layui.layer;
//var pages = Math.ceil(Currentcount / ReviewPagesize); //
var contid=”Paginglist_”+selectType;
if (Currentcount>ReviewPagesize) {
laypage.render({
elem: contid, //
limit: ReviewPagesize, //
count: Currentcount,
jump: function(obj,first){
if (!first) {
GetReviewList(obj.curr);
}
}
});
}
});
}
//Processing of new comments
function writereview(ProductionID){
$.ajax({
url:”/ProductReview/PurchaseRecord”,
data:{“ProductionID”: parseInt(ProductionID)},
cache:false,
type:”POST”,
dataType:”json”,
success:function(data){
if (data!=null) {
if (data.ret==”2″) {
var url=”/productreview/writereview/”+ProductionID+”?orderId=”+data.orderId+””;
window.location.href=url;
}
if (data.ret==”-1″) {
jbCart.tools.loginDiog();
return false;
}
else if(data.ret==”0″) {
$.curContent.gkAlert(“Only purchased users are eligible to write a review.”);
}
else if(data.ret==”1″) {
$.curContent.gkAlert(“Sorry, the products you purchased have you already written comments”);
}
}
else {
$.curContent.gkAlert(“Sorry, Operation failed. Please try again after refresh!”);
}
},
error:function(){
hideloading();
$.curContent.gkAlert(“Sorry, Operation failed. Please try again after refresh!”);
}
});
}
//function addcomment(obj) {
// LoadReviewcomments(obj);
//}
function LoadReviewcomments(obj) {
var selectType=$(“.review_select_dd.actived”).eq(0).attr(“selectType”);
if (selectType==undefined) {selectType=”All”;}
var CommentCount = $(obj).attr(“commentcount”);
var ReviewID = $(obj).attr(“ReviewID”);
var _ul= $(“#review_service_ul_”+selectType+”_”+ReviewID+””);
if (_ul.html() == “”) {
LoadReviewcommentsdata(selectType,ReviewID);
}
var _list = $(obj).parents(“.review_comments”).siblings(“.review_comments_list”);
if ($(_list).is(“:hidden”)) {
$(obj).addClass(“active”);
_list.slideDown(10);
} else {
$(obj).removeClass(“active”);
_list.slideUp(10);
}
}
function LoadReviewcommentsdata(selectType,ReviewID,pageIndex) {
var _page = pageIndex == undefined ? 1 : pageIndex;
showloading(true, ‘loading’);
$.ajax({
url: “/ProductReview/LoadReviewcomments”,
data: { “reviewId”: ReviewID, “page”: _page, “pageSize”: pagesize },
cache: false,
type: “post”,
dataType: “json”,
success: function (data) {
if(data.IsLogin==false)
{
$(“.review_comments_content”).prop(“disabled”,true).addClass(“textarea_disabled”);
$(“.comments_write_verification”).hide();
$(“.comments_singn”).show();
}else{
$(“.comments_singn”).hide();
$(“.review_comments_content”).prop(“disabled”,false).removeClass(“textarea_disabled”);
$(“.comments_write_verification”).show();
}
hideloading();
$(“#review_service_ul_”+selectType+”_”+ReviewID+””).html(“”);
var htmlstr = “”;
if (data.list != null) {
$.each(data.list, function (i, item) {
htmlstr += “
- “;
htmlstr += “
” + item.Content + “”;
htmlstr += “Posted ” + item.EnToUsCreationTime + ” by ” + item.UserName + “”;
htmlstr += “”;
});
$(“#review_service_ul_”+selectType+”_”+ReviewID+””).append(htmlstr);
if (pageIndex == undefined) {
LoadReviewcomments_laypage(selectType,data.CommentCount, ReviewID);
}
}
},
error: function () {
hideloading();
}
});
}
//Load comments JS
var LoadReviewcomments_laypage = function(selectType,Currentcount, ReviewID)
{
layui.use([‘laypage’, ‘layer’], function(){
var laypage = layui.laypage
,layer = layui.layer;
//var pages = Math.ceil(Currentcount / pagesize); //
var contid=”PaginglistReviewID_”+selectType+”_”+ReviewID;
if (Currentcount>pagesize) {
laypage.render({
elem: contid, //
limit: pagesize, //
count: Currentcount,
jump: function(obj,first){
if (!first) {
LoadReviewcommentsdata(selectType,ReviewID,obj.curr);
}
}
});
}
});
}
//Additional comments processing
function ReviewSubmit(obj)
{
var _this=$(obj);
var ReviewID=_this.attr(“ReviewID”);
$(“.comments_error_”+ReviewID).text(“”);
var _content=_this.parents(“.review_comments_write”).find(“.review_comments_content”).eq(0);
var _code=_this.parents(“.review_comments_write”).find(“.review_comments_code”).eq(0);
var Content= $.trim(_content.val());
var Code =_code.val();
if (Content.length==0) {
_content.css(‘border’,’1px #f60 solid’).focus();
$(“.comments_error_”+ReviewID).text(“Please write at least one word.”);
_content.focus();
return false;
}
if (Code.length<4) {
$(".comments_error_" + ReviewID).text("Please enter the code.");
_code.focus();
return false;
}
$.ajax({
url:"/ProductReview/ReviewSubmit",
data:{"ReviewID":ReviewID,"code":Code,"content":Content},
cache:false,
type:"post",
dataType:"json",
success:function(data){
if (data!=null) {
if (data.ret=="1") {
$.curContent.gkAlert("Thanks for your comment. The review will be displayed after being approved.",true);
_this.parents(".review_comments_list").siblings(".review_comments") .find(".review_service_title").removeClass("active");
_this.parents("#review_comments_write_"+ ReviewID).find(".review_comments_content").val("");
_this.siblings(".review_comments_code").val("");
$(".textLen").text("0");
_this.parents(".review_comments_list").hide();
}
else if (data.ret=="-4") {
$.curContent.gkAlert("Please enter a correct code.");
}
else if(data.ret=="-3"){
jbCart.tools.loginDiog();
return false;
}
else {
$.curContent.gkAlert("Sorry, Operation failed. Please try again after refresh!");
}
}
else {
$.curContent.gkAlert("Sorry, Operation failed. Please try again after refresh!");
}
},
error:function(){
// hideloading();
$.curContent.gkAlert("Sorry, Operation failed. Please try again after refresh!");
}
});
}
$(function () {
//
$(“.review_select_dd”).on(“click”, function () {
var selectType = $(this).attr(“selectType”);
$(“.review_select_dd”).removeClass(“actived”);
$(this).addClass(“actived”);
$(“.reviewList_div”).hide();
$(“.review_list_” + selectType).show();
if ($(“#reviewList_” + selectType).html().length == 0) {
GetReviewList();
}
});
});
Sign in to Geekbuying.com
Please enter a valid email address. Please enter a valid Password Sign In Join free now! Forgot your password? close
Connect with FaceBook Connect with Google |
function checkEmpty() {
if ($(‘#jbEmail’).val().length == 0) {
$(‘#jbEmail’).focus();
$(‘#jbEmail’).parent().find(‘.infobox’).show();
$(‘#jbEmail’).blur(function () {
$(‘#jbEmail’).parent().find(‘.infobox’).hide();
})
return false;
}
if ($(‘#jbPassword’).val().length == 0) {
$(‘#jbPassword’).focus();
$(‘#jbPassword’).parent().find(‘.infobox’).show();
$(‘#jbPassword’).blur(function () {
$(‘#jbPassword’).parent().find(‘.infobox’).hide();
})
return false;
}
return true;
}
//Login processing
function Login(isAddUser) {
if (!checkEmpty()) {
return;
}
showloading();
var data = { EmailAddress: $(“#jbEmail”).val(), Password: encodeURI($(“#jbPassword”).val()) };
$.ajax({
url: “https://www.geekbuying.com/main/LoginForJsonp”,
data: data,
cache: false,
type: “post”,
dataType: “jsonp”,
success: function (model) {
hideloading();
if (isAddUser == true) {
location.href = “https://www.geekbuying.com/main/SignUpSuccessWithActive”;
return;
}
if (model.IsLogin) {
jbCart.tools.gaWarpHide();
$(“#userInfoBox”).css(“display”, “block”);
$(“#loginBox”).css(“display”, “none”);
$(‘#jbCartLoginDiv’).css(“display”, “none”);
$(“#userInfoBox .un:eq(0)”).text(model.User.UserName);
window.location.reload();
}
else {
hideloading();
if (model.ActiveState == false) {
location.href = “https://www.geekbuying.com/main/SignInActivateTips?useremail=” + escape(data.EmailAddress);
}
$(“#userInfoBox”).css(“display”, “none”);
$(“#loginBox”).css(“display”, “block”);
$(“#LoginError”).css({ “display”: “inline-block”, “color”: “#d92929”, “width”: 312, “margin-top”: 10, “margin-bottom”: 10, “margin-left”: 74, “margin-right”: 74 });
$(“#LoginError”).html(model.Error);
}
},
error: function () {
jbCart.tools.gaWarpHide();
hideloading();
}
});
}
$(function () {
$(“#jbLoginSubmit”).bind(“click”, Login);
});
//
function GetQaList() {
var selecttype = 0;
var qa_select_dd_actived = $(“.qa_select_dd.actived”);
if (qa_select_dd_actived.length > 0) {
selecttype = $(“.qa_select_dd.actived”).eq(0).data().selecttype || 0;
if (selecttype == undefined) { selecttype = 0; }
}
var ProductionId = $(“#inputProductId”).val();
if (ProductionId != null && ProductionId != typeof (undefined)) {
$.getJSON(“/QA/GetQAList”, { “ProductionId”: ProductionId, “selectType”: selecttype }, function (data) {
if (data.typelist.length > 0) {
var html_dd = “”;
var qaList_div = “”;
$.each(data.typelist, function (i, item) {
html_dd += “” + item.Name + ” (” + item.Count + “) “;
qaList_div += “
“;
});
$(“#qa_select_dl”).empty().append(html_dd);
$(“#qa_list_ul”).empty().append(qaList_div);
var qa_Qcount = “” + data.Qcount + ” Questions & AnswersView All Ask a Question”;
$(“#qa_Qcount”).empty().append(qa_Qcount);
}
if (data.Qcount > 0) {
var qaList_li = “”;
$.each(data.list, function (i, item) {
qaList_li += “
-
Q
” + item.model.Content + “” + item.model.EnToUsCreationTime + “”;
if (item.Tqaanswerslist.length > 0) {
qaList_li += “
A”;
$.each(item.Tqaanswerslist, function (o, list) {
qaList_li += “
” + list.Content + “Answered by ” + list.AnswererName + ” on ” + list.EnToUsCreationTime + “”;
});
qaList_li += “”;
qaList_li += “” + item.model.AnswerCount + ” answers in total”
}
else {
qaList_li += “Temporarily no answer”
}
qaList_li += “”;
});
$(“#qaList_ul_” + selecttype + “”).empty().append(qaList_li);
$(“.qa_list_” + selecttype + “”).show();
$(“.qa_select_dd”).on(“click”, function () {
var selecttype = $(this).data().selecttype || 0;
$(“.qa_select_dd”).removeClass(“actived”);
$(this).addClass(“actived”);
$(“.qaList_div”).hide();
$(“.qa_list_” + selecttype).show();
if ($(“#qaList_ul_” + selecttype).html().length == 0) {
GetQaList();
}
});
}
else {
if (selecttype == 0) {
var qa_Qcount = “Temporarily no discussionAsk a Question”;
$(“#qa_Qcount”).empty().append(qa_Qcount);
}
}
});
}
}
$(function () {
//
$(“.qa_select_dd”).on(“click”, function () {
var selecttype = $(this).data().selecttype || 0;
$(“.qa_select_dd”).removeClass(“actived”);
$(this).addClass(“actived”);
$(“.qaList_div”).hide();
$(“.qa_list_” + selecttype).show();
if ($(“#qaList_ul_” + selecttype).html().length == 0) {
GetQaList();
}
});
});
<![CDATA[
{{ if (SC.page.products.length) { }}
Other Geeks Viewed and Bought
{{ for (var i=0; i < SC.page.products.length; i++) { }}
{{ var p = SC.page.products[i];var imgurl=p.image.replace('http://','//');var sku=p.link.substring(p.link.lastIndexOf('-')+1,p.link.lastIndexOf('.'));}}
{{=p.title}}
€{{= “EUR”==”JPY”?Math.round(p.price*0.8416):(p.price*0.8416).toFixed(2) }}
€{{= “EUR”==”JPY”?Math.round(p.msrp*0.8416):(p.msrp*0.8416).toFixed(2)}}
{{ } }}
{{ } }}
]]>
ScarabQueue.push([“recommend”, {
logic: “ALSO_BOUGHT”,
containerId: “my-recommendation-containerT2”,
templateId: “my-recommender-templateT2”,
limit: 5,
success: function(SC, render) {
if (SC.page.products.length <= 0) {
var container = SC.recommender.container;
container.style.display = "none";
}
else {
render(SC);
asycGetProductPriceForEmarysList();
}
}
}]);
ScarabQueue.push(['goAsync']);
var httpsrooturl = “https://www.geekbuying.com”;
function getCookieAA(c_name) {
if (document.cookie.length > 0) {
c_start = document.cookie.indexOf(c_name + “=”)
if (c_start != -1) {
c_start = c_start + c_name.length + 1
c_end = document.cookie.indexOf(“;”, c_start)
if (c_end == -1) c_end = document.cookie.length
var cvalue = unescape(document.cookie.substring(c_start, c_end));
return cvalue.replace(“+”, ” “);
}
}
return “”
}
{
“@context”: “http://schema.org”,
“@type”: “Product”,
“name”: “Jrecam JM3866W Security Wireless IP Camera 720P Mega Pixel P2P Plug and Play Two-Way Audio with IR Night Vision Black”,
“image”: “//img.gkbcdn.com/p/2013-07-23/jrecam-jm3866w-security-wireless-ip-camera-black-1571995404491._w500_.jpg”,
“description”: “EUR 69.99 Free Shipping, Wholesale Price, Jrecam JM3866W Security Wireless IP Camera 720P Mega Pixel P2P Plug and Play Two-Way Audio with IR Night Vision Black”,
“sku”:”321910″,
“mpn”:”GK321910″,
“offers”: {
“@type”: “Offer”,
“url”:”https://www.geekbuying.com/item/Jrecam-JM3866W-Security-Wireless-IP-Camera-Black-321910.html”,
“priceCurrency”: “EUR”,
“price”: “58.90”,
“priceValidUntil”:”2022-09-08″,
“itemCondition”: “http://schema.org/NewCondition”,
“availability”: “http://schema.org/InStock”
},
“brand”:{“@type”: “Thing”,”name”: “Geekbuying” }
}
function ShowProductSalePrice(data){
$(“.geekcurrenc:eq(0)”).html(data.displayCurrency);
$(“.pricesty:eq(0)”).html(data.pcPrice);
$(“#saleprice”).html(data.pcPrice).css(“display”, “inline-block”);
$(“#currencyF”).html(data.displayCurrency).css(“display”, “inline-block”);
$(“.BuyBox span:eq(0)”).html(data.displayCurrency + ” ” + data.pcPrice);
if (data.discount > 0) {
$(“#regprice”).html(data.displayCurrency + “” + data.regPirce).css(“display”,”inline-block”);
$(“#discount”).html(data.discount + “% OFF”).css(“display”,”inline-block”);
}
}
function GetProductSalePrice(productid){
GetProductAppSalePrice(productid);
}
//Get app price
function GetProductAppSalePrice(productid){
$.ajax({
url: “/service/GetProductAppSalePrice”,
dataType: “json”,
data: “productid=” + productid + “&_=” + Math.random() + “&liveId=” + GetQueryString(“liveId”),
type: “get”,
beforeSend: function () {
$(“#loadingPrice”).addClass(“loading”);
},
success: function (appdata) {
if(appdata){
if(appdata == null)
return;
$(“#loadingPrice”).removeClass(“loading”);
ShowProductSalePrice(appdata);
if(appdata.appPrice > 0 && appdata.savePrice > 0)
{
$(“#appPrice”).show();
$(“#appPrice ._appPrice”).html(appdata.displayCurrency + ‘ ‘ + appdata.appPrice);
$(“#appPrice ._appSave”).html(appdata.displayCurrency + ‘ ‘ + appdata.savePrice);
}
else
{
$(“#appPrice”).hide();
}
}
},
error: function () {
}
});
}
GetProductSalePrice(‘321910’);
window.CurrentOrNextCampaignView=null;
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_US/all.js#xfbml=1”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));
var google_tag_params = {
ecomm_prodid: “321910”,
ecomm_pname:’Jrecam JM3866W Security Wireless IP Camera 720P Mega Pixel P2P Plug and Play Two-Way Audio with IR Night Vision Black’,
ecomm_pcat:”Security Systems > Security Cameras > IP Cameras “,
ecomm_pagetype:”product”,
ecomm_language: “en”,
ecomm_currency:”EUR”,
ecomm_pvalue: 58.90,
ecomm_destcity:”DE”,
ecomm_quantity:1,
ecomm_usertype:”unregistered”,
ecomm_ppv:’1678′,
ecomm_totalvalue:58.90
}
/* */
//Page loading comments and QA
var ajaxLocked = true;
var ajaxLockedQa = true;
var lazyheight = 0;
function showload() {
lazyheight = parseFloat($(window).height()) + parseFloat($(window).scrollTop());
var ReviewTop = parseFloat($(“#jbReviewsArea”).offset().top);
var QaTop = parseFloat($(“#qaBottom”).offset().top);
if (lazyheight >= ReviewTop && ajaxLocked) {
GetReviewList();
ajaxLocked = false;
}
if (lazyheight >= QaTop && ajaxLockedQa) {
GetQaList();
ajaxLockedQa = false;
}
}
$(function () {
if (!ajaxLocked) {
return;
}
if (!ajaxLockedQa) {
return;
}
$(“#ReviewsTab”).click(function () {
if (!ajaxLocked) {
GetReviewList();
ajaxLocked = false;
}
});
$(“#QATab”).click(function () {
if (!ajaxLockedQa) {
GetQaList();
ajaxLockedQa = false;
}
});
$(window).bind(“scroll”, function () {
//As the scroll bar scrolls, comments and questions are loaded
showload();
});
});
var quantityElement = $(“#inputQuantity”);
quantityElement.keyup(function () {
var numberVal = parseInt($(this).val());
if (isNaN(numberVal)) {
numberVal = 1;
quantityElement.val(numberVal);
} else {
quantityElement.val(numberVal);
}
});
$(“#addNumber”).click(function () {
var isreadOnly = $(“#inputQuantity”).attr(“readonly”);
if (isreadOnly == “readonly”) {
return;
}
var numberVal = parseInt(quantityElement.val());
if (isNaN(numberVal)) {
numberVal = 1;
quantityElement.val(numberVal);
} else if (numberVal >= 999) {
numberVal = 999;
} else {
numberVal++;
}
quantityElement.val(numberVal);
quantityElement.trigger(“keyup”);
});
$(“#delNumber”).click(function () {
var isreadOnly = $(“#inputQuantity”).attr(“readonly”);
if (isreadOnly == “readonly”) {
return;
}
var numberVal = parseInt(quantityElement.val());
numberVal;
if (numberVal <= 1 || isNaN(numberVal)) {
numberVal = 1;
}
quantityElement.val(numberVal);
quantityElement.trigger("keyup");
});
We ensure to all customers that GeekBuying will offer the most competitive price online Please fill in the blank and submit it if you found this product sold elsewhere for a lower price. We will work with suppliers to lower down the price as much as we can, and you will receive an email afterwards. Your trust and support are highly appreciated. Item Code: 321910 Free Shipping
The filed E-mail is required
*Source URL:
*Email:
Lower Price:
The price is included free shipping to your country.
Enter Letters:
Note/Details:
Submit Please make sure the information above is filled in correctly so we can offer you an accurate discount. Our wholesale department will get back to you within 24 hours. Great, You report on this product has been sent to us. Product info will updated if we can work with our supplier to lower the price(Normally in 48 hours Mon- Fri). function ShowMsg(obj, msg) {
if (obj == “#vaildatecode”) {
$(obj).next().next(“.error”).html(msg).show(500);
}
else {
$(obj).next(“.error”).html(msg).show(500);
}
}
$(“#txtSourceURL”).blur(function () {
if ($(this).val() == “”) {
ShowMsg(this, “The filed URL is required”);
return;
}
ShowMsg(this, “”);
});
$(“#txtUserEmail”).blur(function () {
var reg1 = /^([a-zA-Z0-9]+[_|_|.]?)*[a-zA-Z0-9][email protected]([a-zA-Z0-9]+[_|_|.]?)*[a-zA-Z0-9]+.(?:com|cn|COM|CN)$/;
var val2 = $(this).val()
if (val2 == “”) {
ShowMsg(this, “The filed E-mail is required”);
return;
}
if (!reg1.test(val2)) {
ShowMsg(this, “The filed E-mail must format”);
return;
}
ShowMsg(this, “”);
});
$(“#vaildatecode”).blur(function () {
var ValidateCode = $(“#vaildatecode”).val();
if (ValidateCode == undefined || ValidateCode == “”) {
ShowMsg(“#vaildatecode”, “Please enter the verification code first.”);
return;
}
ShowMsg(“#vaildatecode”, “”);
});
$(“[name=pricematchBtn]”).click(function () {
var SourceURL = $(“#txtSourceURL”).val();
var UserEmail = $(“#txtUserEmail”).val();
var ContainsShipping = “0”;
if (SourceURL == “”) {
ShowMsg(“#txtSourceURL”, “The filed URL is required”);
return;
}
if (UserEmail == “”) {
ShowMsg(“#txtUserEmail”, “The filed E-mail is required”);
return;
}
if ($(“#IsContainsShipping:checked”).length > 0) {
ContainsShipping = “1”;
}
var ValidateCode = $(“#vaildatecode”).val();
if (ValidateCode == undefined || ValidateCode == “”) {
ShowMsg(“#vaildatecode”, “Please enter the verification code first.”);
}
$.post(“/Product/PostMatchPrice”,
{ ProductID: $(“#ProductID”).val(), txtSourceURL: SourceURL, txtUserEmail: UserEmail, LowerPrice: $(“#LowerPrice”).val(), IsContainsShipping: ContainsShipping, txtDetails: $(“#txtDetails”).val(), ValidateCode: ValidateCode },
function (data) {
if (data && data.Err) {
ShowMsg(“#vaildatecode”, data.Err);
} else {
$(“.geek_priceMatch,.wholesale_bg”).hide();
$.curContent.gkAlert(“Great, You report on this product has been sent to us. Product info will updated if we can work with our supplier to lower the price(Normally in 48 hours Mon- Fri).”, false, “520px”, “140px”);
}
});
});
$(function () {
function refresh() {
$(“#vaildatecodeimg”).attr(“src”, “/ValidateCode?” + Math.random());
}
refresh();
$(“#refresh,#vaildatecodeimg”).click(function () {
refresh();
});
});
$(function () {
var user_review = new LightBoxs(“user”);
user_review.init();
});
GET 5% OFF Subscribe to our newsletter & get a free coupon. Subscribe Now! Please enter a valid email address! Thank you for subscribing! The 5% OFF discount coupon has been sent to the mailbox: OK function getCookieEmail(name) {
var cookieStr = document.cookie;
if (cookieStr.length > 0) {
var cookieArr = cookieStr.split(“;”);
for (var i = 0; i < cookieArr.length; i++) {
var cookieVal = cookieArr[i].split("=");
if (cookieVal[0].trim() == name) {
return unescape(cookieVal[1]);
}
}
}
}
function setCookieEmail(name, value) {
var exp = new Date();
exp.setTime(exp.getTime() + 15 * 24 * 60 * 60 * 1000);
document.cookie = name + "=" + escape(value) + ";path=/; domain=geekbuying.com;expires=" + exp.toGMTString();
}
//close top banner
var geekSubscribeFlag = getCookieEmail("geekSubscribeFlag");
if (geekSubscribeFlag != "1") {
$(".sub_bg").show();
} else {
$(".sub_bg").hide();
}
$(".close_sub").click(function () {
$(".sub_bg").hide();
setCookieEmail("geekSubscribeFlag", "1");
})
$("#SubscribeNow").click(function () {
var email = $.trim($("#subEmail").val());
if (email == "") {
$(".error").show();
return;
}
else {
$(".error").hide();
}
var myreg = /w+([-+.']w+)*@w+([-.]w+)*.w+([-.]w+)*/;
if (!myreg.test(email)) {
$("#subEmail").focus();
$(".error").show();
return;
}
else {
$(".error").hide();
}
$.ajax({
url: "/Checkout/newsletter?IsAjax=1",
type: "post",
async: true,
data: { "email": email },
success: function (data) {
if (data.msg == 'ok') {
$("#subscriberSuccessEmail").text(email);
$(".sub_email").hide();
$(".success_email").show();
}
else {
$(".error").text(data.msg);
$(".error").show();
}
}
});
});
ga('require', 'ec');
function addToCart() {
ga('ec:addProduct', {
'id': '321910',
'name': 'Jrecam JM3866W Security Wireless IP Camera 720P Mega Pixel P2P Plug and Play Two-Way Audio with IR Night Vision Black',
'category': 'IP Cameras',
'price': '69.99',
'quantity': $("#inputQuantity").val()
});
ga('ec:setAction', 'detail'); // Send data using an event.
}
Mobile Android iOS About Geekbuying We at Geekbuying are passionate tech enthusiasts who enjoy sharing the latest gadgets with people all around the world. We have a massive selection of products and offer unbeatable prices. If you are looking for the latest name-brand smartphone or just shopping around for a unique gadget, Geekbuying has you covered. Smartphones, laptops, TV Boxes, smart wearables, and drones are amongst the most popular products on our website; but there are many other amazing gadgets you can find here on Geekbuying. From big brands to trendy items we have made your search that much easier. So check out our incredible products now! Help Order status About us Contact us Warranty FAQs Xiaomi and Mi-brand Sitemap Support Payment information Shipping guide Wholesale Affiliates Student discount Youth discount Request a sample Policies Terms & conditions Return policy Privacy Declaration Customs Popular Searches - Geekbuying Coupon
- Tronsmart Bluetooth Speakers
- Windows Mini PC
- android tv boxes
- Roborock S7
- LDS Robot Vacuum
- Electric Bike
- Walking Machine
- Xiaomi
English Español Français Deutsch Italiano Português Nederlands Polski Русский Türkçe ελληνικά Magyar لعربية עברית ไทย 日本語 Copyright © 2012-2021 GeekBuying.com. All rights reserved.
Cart
Get exclusive app deals and discounts, download our app & SAVE
Go to mobile site
.gdpr-cookie{width: 100%; height: 40px; background:rgba(0,0,0,0.7); position: fixed; bottom: 0; left: 0; z-index:1010; display:none; }
.gdpr-cookie p{line-height:40px; font-size:14px; color: #fff; width: 1200px; text-align: center; margin:0 auto; display:block; }
.gdpr-cookie a{color:#2c7bfe; text-decoration:underline;}
.gdpr-cookie .cookies-close{width:128px; height:24px; display: inline-block; background-color:#2c7bfe; color:#fff; font-size:13px; line-height:24px; border-radius:12px; cursor:pointer; margin:8px 0 0 50px; float: right;}
@media screen and (max-width: 1199px){
.gdpr-cookie p{font-size:12px;width:1000px;text-align: left; }
.gdpr-cookie .cookies-close{text-align:center;}
}
We use cookies to ensure that we give you the best experience on our website. By continuing to browse the site, you agree to our use of Cookies .I agree var cookie_prefix = “vaya_”;
var cookie_key =cookie_prefix+”AllowCookie”;
function AllowCookie_SetCookie() {
var currentDate = new Date();
var expiresDate = new Date(currentDate.setYear(currentDate.getFullYear() + 1));
document.cookie = cookie_key + “=1; path=/;expires=” + expiresDate.toGMTString();
var cookieLayer = document.getElementsByClassName(“gdpr-cookie”)[0];
cookieLayer.style.display = “none”;
}
(function () {
var cookieLayer = document.getElementsByClassName(“gdpr-cookie”)[0];
if (GetCookie(cookie_key) != “1”) {
cookieLayer.style.display = “inline-block”;
} else {
cookieLayer.style.display = “none”;
}
function GetCookie (name) {
var cookieStr = document.cookie;
var cookieByName = ”;
if (cookieStr.length > 0) {
var cookieArr = cookieStr.split(“;”); //
for (var i = 0; i Security Cameras>IP Cameras’);
$(“.geek_link_js”).click(function () {
window.location.href =”https://www.geekbuying.com”;
})
ga(‘send’, ‘pageview’);
var geekN = new geekSearch();
geekN.init();
CurrencyChange.init({
currCurrency: “EUR”,
currCurrencyDisplay:”€”,
countryID:”38″,
countryCode:”DE”,
countryName:”Germany”,
countryURL: “https://www.geekbuying.com/service/GetCountryCurrency”,
changeCurrencyURL: “https://www.geekbuying.com/changecurrency”,
currRefURL: ‘%2f%2fwww.geekbuying.com%2fitem%2fJrecam-JM3866W-Security-Wireless-IP-Camera-Black-321910.html’
});
function openWin(url, name, iWidth, iHeight) {
var iTop = (window.screen.availHeight 30 iHeight) / 2;
var iLeft = (window.screen.availWidth 10 iWidth) / 2;
window.open(url, name, ‘height=’ + iHeight + ‘,innerHeight=’ + iHeight + ‘,width=’ + iWidth + ‘,innerWidth=’ + iWidth + ‘,top=’ + iTop + ‘,left=’ + iLeft + ‘,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no’);
}
var url = window.HttpsWWWRootURL ? window.HttpsWWWRootURL : “”;
var local_pathname = window.location.pathname;
var isShowCountry;
$.ajax({
url: url + “/Main/GetLoginInfo/”,
cache: false,
dataType: “jsonp”,
jsonpCallback: “jsonpCallback”,
success: function (data) {
isShowCountry = data;
if (data.IsSuccess) {
if (data.IsLogin == true) {
$(“#freeshipping”).html(‘
Hi, ‘ + data.UserName + ‘My Account
My OrdersMy WishlistMy CouponsMy ProfileSign out’);
$(“#WishQty”).show();
} else if (data.IsLogin == false) {
$(“#freeshipping”).html(‘
Sign in
Welcome to GeekbuyingSign InCreate a new account
or
‘).show(600);
$(“#WishQty”).hide();
}
$(“#BasketQuantity”).text(data.Qty).show();
$(“#WishQty”).html(data.WishQty);
if (data.CountryName && data.CurrencyName) {
$(“#currencyTop .head_selectCurrency”).html(” / ” + data.CurrencyName);
$(“#currencyShip .head_country”).attr({ “data-countryid”: data.CountryID, “data-countrycode”: data.CountryCode, “data-countryname”: data.CountryName }).html(“” + data.CountryName + “ “);
$(“#currencyType .head_currency”).attr(“data-currency”, data.CurrencyName).attr(“data-symbol”, data.DisplayCurrency).html(data.CurrencyName + ” ” + data.DisplayCurrency + ““);
}
//data.IsRefreshIP
if (isShowCountry.IsRefreshIP && local_pathname != “/shoppingcart”) {
$(“#locationPos”).html(“
Items displayed can be shipped to ” + data.CountryName + “. To view more items please change your delivery location.Don’t Change Change Address”);
$(“#locationPosition,#locationPos”).show();
} else {
$(“#currencyContent”).show();
}
$(“#closePos”).click(function () {
$(“#locationPosition,#locationPos”).hide();
isShowCountry.IsRefreshIP = false;
});
$(“#changePos”).click(function () {
$(“#currencyContent”).show();
$(“#locationPos”).hide();
isShowCountry.IsRefreshIP = false;
});
$(‘#currencyTop’).hover(function () {
if (isShowCountry.IsRefreshIP) {
$(“#locationPosition,#locationPos”).show();
} else {
$(“#locationPosition,#currencyContent”).show();
$(“.ship_countrys,.currencys_navi”).hide();
}
});
}
},
complete: function () {
$(“.sign_before”).hover(function () {
$(“.sign_before_cont”).show();
}, function () {
$(“.sign_before_cont”).hide();
});
$(“.sign_after”).hover(function () {
$(“.sign_after_cont”).show();
}, function () {
$(“.sign_after_cont”).hide();
});
}
});
$(function () {
var timeout;
$(“.user_cart”).mouseenter(function () {
clearTimeout(timeout);
timeout = setTimeout(function () {
GetShoppingCartViewModelForAjax();
$(‘.cart_pro’).show();
}, 500);
}).mouseleave(function () {
clearTimeout(timeout);
timeout = setTimeout(function () {
$(‘.cart_pro’).hide();
}, 1000);
})
});
function GetShoppingCartViewModelForAjax() {
if (window.GetShoppingCartViewModelForAjaxLock > 0) {
return;
} else {
window.GetShoppingCartViewModelForAjaxLock = 2000;
var GetShoppingCartViewModelForAjaxLockIntervalId = setInterval(function () {
window.GetShoppingCartViewModelForAjaxLock = window.GetShoppingCartViewModelForAjaxLock 10;
if (window.GetShoppingCartViewModelForAjaxLock = 4) {
$(‘#cart_proul’).css(‘overflow-y’, ‘scroll’);
} else {
$(‘#cart_proul’).css(‘overflow-y’, ‘hidden’);
}
}
});
}
function StitchingHTML(model) {
var html = “”;
var j = 0;
var sumshopPrice = 0;
if (model.AllItems.length == 0) {
$(“.cartfull”).hide();
$(“.cartclear”).show();
}
else {
$(“.cartclear”).hide();
for (var i = 0; i < model.AllItems.length; i++) {
model.AllItems[i].ProductId;
model.AllItems[i].PicturePath;
model.AllItems[i].Link;
model.AllItems[i].ProductName;
model.AllItems[i].BasketItemId;
model.AllItems[i].UnitPrice;
model.AllItems[i].Quantity;
html += '
- ‘
+ ” + ” + ” + ” + model.AllItems[i].ProductName + ” + ” + (model.DisplayCurrency + ‘ ‘ + (model.CurrencyCode == “JPY” ? Math.round(model.AllItems[i].UnitPrice * model.CurrencyRate) : (model.AllItems[i].UnitPrice * model.CurrencyRate).toFixed(2))) + ‘ ’ + ‘X’ + model.AllItems[i].Quantity + ” + ” + ”; j++; } $(“#cart_proul”).html(html); $(‘#cartView’).html(‘ ‘ + model.TotalQuantity + ‘ Item(s) ‘ + model.DisplayCurrency + ‘ ‘ + (model.CurrencyCode == “JPY” ? Math.round(model.Items.length == 0 ? 0 : model.GrandTotal * model.CurrencyRate) : (model.Items.length == 0 ? 0 : model.GrandTotal * model.CurrencyRate).toFixed(2)) + ‘ View My Cart’); $(“.cartfull”).show(); } } function RemoveBasketItem(BasketItemId, ProductId) { $.ajax({ url: “/shoppingcart/Deletebasketitem?BasketItemId=” + BasketItemId + “&ProductId=” + ProductId, type: “get”, dataType: “jsonp”, success: function (data) { StitchingHTML(data); $(“#BasketQuantity”).text(data.TotalQuantity); } }); } function Test_subscribeTextbox() { var temp = $(“#email”); var myreg = /w+([-+.’]w+)*@w+([-.]w+)*.w+([-.]w+)*/; if (!myreg.test(temp.val())) { $(“#emailError”).text(‘Please enter a valid email address!’).show(); temp.val(“”).focus(); return false; } else { $.ajax({ url: “/Checkout/newsletter?IsAjax=1”, type: “post”, async: true, data: { email: $(“#email”).val(), }, success: function (data) { if (data.msg == ‘ok’) { $(“#emailSuccess”).html(“ Thank you for subscribing! ” + “Please check your inbox to get the 5% off coupon:)”).css(“display”, “inline-block”); $(“.foot_subscribe”).hide(); } else { $(“#emailError”).text(data.msg).css(“display”, “inline-block”); } } }); } return false; } $(window).scroll(function () { var winT = $(window).scrollTop(); var winH = $(window).height(); if (winT >= winH) { $(“.navi_right”).fadeIn(); } else { $(“.navi_right”).fadeOut(); } }); $(“#toTop”).on(“click”, function () { $(‘html,body’).animate({ scrollTop: ‘0px’ }, 1000); return false; }); function SignOut() { //blackHole.httpSender.LoginOut(); location.href = “/main/signOut”; } function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: ‘en’, includedLanguages: ‘en,it,de,es,fr,pt,sk,hu,sl,lt,sv,el,da,iw,hr,pl,ro,cs,ja’,autoDisplay: false, gaTrack: true, gaId: ‘UA-33904344-1′ },’google_translate_element’); $(“.google_language_list”).click(function (e) { var lang = $(this).data(“language”); if (lang != “”) { var st = document.querySelector(“.goog-te-combo”); st.value = lang; var ev = document.createEvent(“HTMLEvents”); ev.initEvent(“change”, false, true); st.dispatchEvent(ev); } $(this).parents(“.navi_con”).hide(); e.stopPropagation(); }) } var domain = document.domain; if (domain != null) { var srciptNode = document.createElement(“script”); srciptNode.setAttribute(“type”, “text/javascript”); srciptNode.setAttribute(‘src’, ‘https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit’); document.body.appendChild(srciptNode); } function setCookieForGeekBuy(name, value) { var exp = new Date(); exp.setTime(exp.getTime() + 15 * 24 * 60 * 60 * 1000); document.cookie = name + “=” + escape(value) + “;path=/; domain=geekbuying.com;expires=” + exp.toGMTString(); } //close top banner var geekBannerFlag = getCookie(“geekbuyTopImgFlag”); var geekBannerSrc = getCookie(“geekbuyTopImgSrc”); var thisBannerImg = $(“#geekbuyTopBanner”).attr(“src”); if (geekBannerSrc != thisBannerImg || geekBannerFlag != “1”) { $(“.top_gd”).fadeIn(300); setCookieForGeekBuy(“geekbuyTopImgSrc”, thisBannerImg); } $(“#gdClose”).click(function () { $(“.top_gd”).fadeOut(100); setCookieForGeekBuy(“geekbuyTopImgFlag”, “1”); }); (function () { var x = document.createElement(‘script’); x.async = true; x.src = “https://asia.creativecdn.com/tags?type=script&id=pr_1VsdHahO113fpi5BMiW0_offer_321910”; document.getElementsByTagName(‘head’)[0].appendChild(x); }()); // Start: black hole data acquisition system browse product details window.onload = function () { var productId = “321910”; var productCategory = “Security Systems/Security Cameras/IP Cameras”; var unitPrice = “69.985741444866920152091254753”; var productName = “Jrecam JM3866W Security Wireless IP Camera 720P Mega Pixel P2P Plug and Play Two-Way Audio with IR Night Vision Black”; //Black hole code comments //blackHole.httpSender.ProductDetail(productId, productCategory, unitPrice, productName); }; // End: black hole data acquisition system browse product details |
Reviews
There are no reviews yet.