-
Notifications
You must be signed in to change notification settings - Fork 0
/
general.js
5144 lines (4607 loc) · 225 KB
/
general.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// sessionStorage.setItem('status','loggedOut')
//if user has logged in, then set the session variable as true
/*$(document).ready(function(){
$('body').on('click', '.inbutton', function() {
sessionStorage.setItem('status','loggedIn')
alert(sessionStorage.getItem('status'));
});
});
//if user has signed in, then set the session variable as true
/*$(document).ready(function(){
$('body').on('click', '.inbutton', function() {
sessionStorage.setItem('status','loggedIn')
alert(sessionStorage.getItem('status'));
});
});*/
//if logout, the session variable will be 'loggedOut'
/*$(document).ready(function(){
$('body').on('click', '.outbutton', function() {
sessionStorage.setItem('status','loggedOut')
alert(sessionStorage.getItem('status'));
});
});*/
////////////////////////
//setup channel (verifyP)
$(document).ready(function(){
//alert("hi");
$(".setupPayPalInfo").submit(function(e){
e.preventDefault();
//document.getElementById("setupPayPalInfoButton").disabled = true;
//$(".setupPayPalInfoButton").addClass('disabled');
var formData = new FormData(this);
/*document.getElementById("fpError").innerHTML="Sending mail";*/
$.ajax
({
type: 'POST',
url: 'setupchannelsystem.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
//var data=JSON.parse(response);
//console.log(data.transactions[0].amount.total);
//alert("Payment of $"+data.transactions[0].amount.total+" is successful");
//alert(data['amount']['total']);
//$(".setupPayPalInfoButton").removeClass('disabled');
if(response.trim()=="success")
{
window.location.href="creatorstudio.php";
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
//document.getElementById("setupPayPalInfoButton").disabled = false;
}
});
return false;
})
});
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//toggle subscriptions sidebar
$(document).ready(function(){
$('body').on('click','#more-info-chevron-sub',function(e){
$(".left-nav-subscriptions-div").slideToggle();
});
});
/////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//toggle categories sidebar
$(document).ready(function(){
$('body').on('click','#more-info-chevron',function(e){
$(".dropdown-content").slideToggle();
});
});
/////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////// T I P P I N G S Y S T E M /////////////////////////////////////////////////////
//control for amount input restriction on input for tipping
function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode != 46 && charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
/////////////////////////
////////////////////////
//actual call for tipping
$(document).ready(function(){
//alert("hi");
$(".tip_money_form").submit(function(e){
e.preventDefault();
document.getElementById("tip_money_button").disabled = true;
$(".tip_money_button").addClass('disabled');
var formData = new FormData(this);
/*document.getElementById("fpError").innerHTML="Sending mail";*/
$.ajax
({
type: 'POST',
url: 'tip_system.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
//var data=JSON.parse(response);
//console.log(data.transactions[0].amount.total);
//alert("Payment of $"+data.transactions[0].amount.total+" is successful");
//alert(data['amount']['total']);
$(".tip_money_button").removeClass('disabled');
window.location.href=response;
},
error: function(xhr, status, error) {
alert(xhr.responseText);
document.getElementById("tip_money_button").disabled = false;
}
});
return false;
})
});
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//rate memes
$(document).ready(function(){
$(".meme_rating_form").submit(function(e){
e.preventDefault();
//alert("undau");
var formData = new FormData(this);
/*document.getElementById("fpError").innerHTML="Sending mail";*/
$.ajax
({
type: 'POST',
url: 'rate_memes_system.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
if(response.trim()=="login error")
{
//alert("ea");
window.location.href="signup.php?lastpage="+encodeURIComponent("rate_memes.php");
}
else
{
var data=JSON.parse(response);
document.getElementById("score_span"+data['memeId']).innerHTML=data['avg_score'];
document.getElementById("ratings_span"+data['memeId']).innerHTML=data['total_ratings'];
$("#meme_rating_form_div"+data['memeId']).hide();
$("#rating_message"+data['memeId']).toggle();
document.getElementById("rating_message"+data['memeId']).innerHTML="<b>You've rated this meme "+data['user_rating']+" out of 10</b>";
}
/*if(response.trim()=="sent")
{
document.getElementById("email_field").value="";
document.getElementById("fpError").innerHTML="Your password has been sent to your email!";
}
else
{
document.getElementById("fpError").innerHTML="The email you entered is wrong!";
}*/
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
})
});
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//forgot password
$(document).ready(function(){
$(".fpForm").submit(function(e){
e.preventDefault();
//alert("undau");
var formData = new FormData(this);
document.getElementById("fpError").innerHTML="Sending mail";
$.ajax
({
type: 'POST',
url: 'forgotpasswordsystem.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
if(response.trim()=="sent")
{
document.getElementById("email_field").value="";
document.getElementById("fpError").innerHTML="Your password has been sent to your email!";
}
else
{
document.getElementById("fpError").innerHTML="The email you entered is wrong!";
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
})
});
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//If mobile or tablet has accessed it
$(document).ready(function(){
var width = $(window).width();
//alert(width);
//alert(document.URL);
//alert(window.location.pathname.split("/").pop());
/*alert(window.location.hash);*/
if(width<1048){
/*window.location.href="mobile_tablet_landing_page.php"; */
if(window.location.pathname.split("/").pop()!='rate_memes.php')
{
window.location="https://m.meagl.com";
}
else
{
window.location="https://m.meagl.com/rate_memes.php";
}
}
});
/////////////////////////////////////////////////////////////////////////////////
//scrolling down to nootifications column in userprofile on clicking upper bell
var open=0;//open=1 means notifications column is open ; open=0 means notifications column is closed
$(document).ready(function(){
$('body').on('click','.notifications-button',function(e){
//alert("as");
//alert(sessionId);
console.log(window.location.pathname);
if(window.location.pathname=='/meagl.com/userprofile.php'){ //make this /userprofile.php in upload wala js
console.log("correct page");
if($("#notifications-tab").length)
{
//alert("as");
console.log("inside");
if(document.getElementById("notifications-tab").style.display=="none")
{
//opening it so scrolling
$("html,body").animate({scrollTop: 650},2000);//scrolls to pixel 650 from top
console.log("display none");
}
$("#notifications-tab").toggle();
}
}
if(open==0)
{
//that means its closed and now its being opened
open=1;
}
else
{
//that means its open and now its being closed
open=0;
$.ajax
({
type: 'POST',
url: 'notificationViewingStatusSystem.php',
success: function (response)
{
if(response=="success")
{
$('.notif').css('background-color', '#EAEAEA');
document.getElementById("notificationsNumber").innerHTML=0;
if(/*window.location.pathname=='/meagl.com/userprofile.php'*/document.getElementById("notificationsNumberUP")){
document.getElementById("notificationsNumberUP").innerHTML="unseen: "+0;
}
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
}
});
});
/////////////////////////////////////////////////////////////////////////////////////
//there are unviewed notifications
function thereAreNotifications(notificationsNumber){
//alert(notificationsNumber);
document.getElementById("notificationsNumber").style.display="block";
document.getElementById("notificationsNumber").innerHTML=notificationsNumber;
}
function thereAreNotificationsUP(notificationsNumber){
//alert(notificationsNumber);
document.getElementById("notificationsNumber").style.display="block";
document.getElementById("notificationsNumber").innerHTML=notificationsNumber;
document.getElementById("notificationsNumberUP").style.display="block";
document.getElementById("notificationsNumberUP").innerHTML="unseen: "+notificationsNumber
}
///////////////////////////////////////////////////////////////////////////////////////
//update profile picture preview
$(document).ready(function(){
function readURL1(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
//alert(document.getElementById("prof-pic").src);
$('#prof-pic').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#profilePicture").change(function(){
readURL1(this);
});
});
//update group profile picture preview
$(document).ready(function(){
function readURL1(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
//alert(document.getElementById("prof-pic").src);
$('#full-display').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#groupPic").change(function(){
readURL1(this);
});
});
////////////////////////////////////////////////////////////////////////////////////////////////
//quickview part
//open quick view part
$(document).ready(function(){
$('body').on('click', '.quickview-img', function(e){
var imageId = parseInt($(this).attr('id'));//converts the number which is stored in the form of string to an integer
//alert(imageId);
$(".cover-quick-view").toggle();
//$("#quick-viewer-img"+imageId).toggle();
$("#qv_image"+imageId).toggle();
$('.quick-viewer').toggle();
$(window).click(function(event){
if($(event.target).hasClass('cover-quick-view')){
$('.cover-quick-view').hide();
$('.quick-viewer').hide();
//$("#qv_image"+imageId).hide();
$(".qv_image").hide();
}
});
});
});
//next image
$(document).ready(function(){
$('body').on('click', '.next-img', function(e){
var getnumber=($(this).attr('id')).match(/\d+$/);//gets the number at the end of the string and then stores it in the zeroth position of an array
if(getnumber){
var imageId = parseInt(getnumber[0]);//converts the number which is stored in the form of string to an integer
}
$("#qv_image"+(imageId)).toggle();
$("#qv_image"+(imageId+1)).toggle();
});
});
//previous image
$(document).ready(function(){
$('body').on('click', '.prev-img', function(e){
var getnumber=($(this).attr('id')).match(/\d+$/);//gets the number at the end of the string and then stores it in the zeroth position of an array
if(getnumber){
var imageId = parseInt(getnumber[0]);//converts the number which is stored in the form of string to an integer
}
$("#qv_image"+(imageId)).toggle();
$("#qv_image"+(imageId-1)).toggle();
});
});
////////////////////////////////////////////////////////////////////////////////////////////////
//unchecking hinglish checkbox if english checkbox is clicked and vice versa
$(document).ready(function(){
$('body').on('click', '.englishLanguageCheckbox', function(e){
if($("#hinglishLanguageCheckbox").is(":checked")==true){
$("#hinglishLanguageCheckbox").prop('checked', false);
}
});
});
$(document).ready(function(){
$('body').on('click', '.hinglishLanguageCheckbox', function(e){
if($("#englishLanguageCheckbox").is(":checked")){
$("#englishLanguageCheckbox").prop('checked', false);
}
});
});
//choosing meme viewing language
$(document).ready(function(){
//alert(sessionId);
$(".chooseMemeViewingLanguage").submit(function(e){
e.preventDefault();
//alert("undau");
var formData = new FormData(this);
//alert(formtype);
$.ajax
({
type: 'POST',
url: 'chooseMemeViewingLanguageSystem.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
if(response.trim()=="no selection"){
document.getElementById('memeLanguageError').innerHTML="No selection.";
}
else{
document.getElementById('memeLanguageError').innerHTML="Choices Saved.";
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
})
});
//////////////////////////////////////////////////////////////////////////////////////////////////
//upload image preview
function readURL(input){
//$('.upload-image-div').height($('#previewImage').height());
//alert("preview height:"+$('#previewImage').height());
//alert("upload height:"+$('.upload-image-div').height());
$('.memecategory_select').css({
'position':'absolute',
'left':'412px',
'top':'130px',
});
$('.proceed').css({
'position':'absolute',
'left':'633px',
'top':'240px',
});
if(input.files && input.files[0]){
var reader = new FileReader();
reader.onload = function(e) {
$('#previewImage').attr('src',e.target.result);
console.log($('#previewImage').height());
$('.upload-image-div').height($('.preview-image').height()-20);
$('.upload-btn').css({
'margin-top':'10px',
'margin-left':'597px',
'font-size':'17px',
'width':'150px',
'padding-bottom':'10px',
'padding-left':'5px',
});
$('.upload-btn').click(function(){
$('.upload-image-div').height($('.preview-image').height()-20);
});
$('.upload-btn').focusout();
$('.preview-image').show();
console.log($(":file").filestyle());
$(":file").filestyle('buttonText','Change Image');
};
reader.readAsDataURL(input.files[0]);
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////
//Notifications viewing status
/*$(document).ready(function(){
//alert(sessionId);
$('body').on('click', '.notif-link', function(e){
e.preventDefault();
//alert(window.location.pathname);
//if(window.location.pathname!="/meagl.com/userprofile.php")
//{
//alert("As");
var getnumber=($(this).attr('id')).match(/\d+$/);//gets the number at the end of the string and then stores it in the zeroth position of an array
if(getnumber){
var notificationId = parseInt(getnumber[0]);//converts the number which is stored in the form of string to an integer
}
//alert(notificationId);
link=$(this).attr('href');
//alert("link="+link);
$.ajax
({
type: 'POST',
url: 'notificationViewingStatusSystem.php',
data:{
notificationId:notificationId
},
success: function (response)
{
//alert(response);
if(response.trim()=="success")
{
window.location.href=link;
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
/*}
else{
//alert($(this).attr("href"));
window.location.href=$(this).attr("href");
}
})
});*/
/////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//INSTITUTE AUTOCOMPLETE SYSTEM
$(document).ready(function(){
//alert(sessionId);
$("#institute_signup_form").keyup(function(e){
e.preventDefault();
var inst=document.getElementById("institute_signup_form").value;
//alert(inst);
if(inst!=""){
$.ajax
({
type: 'POST',
url: 'institute_autocomplete_system.php',
data:{inst:inst},
success: function (response)
{
document.getElementById("institute_autocomplete_suggestions").innerHTML=response;
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
}else{
document.getElementById("institute_autocomplete_suggestions").innerHTML='';
}
})
});
//on clicking on any of the suggestions, the suggestion will pop up into the input field
$(document).ready(function(){
$('body').on('click', '.institute_suggestions', function(e){
var val=this.innerHTML;
document.getElementById("institute_signup_form").value=val;
$("#institute_autocomplete_suggestions").toggle();
return false;
})
});
//LOAD MORE
$(document).ready(function(){
//alert("ege");
//alert(window.location.pathname);
//index page
if(window.location.pathname=='/meagl.com/index.php'){
if($.trim($("#recommended_content_div").html())==''){//alert("rtn");
if(document.getElementById("index_page_recommended_loadmore_form")){
document.getElementById("index_page_recommended_loadmore_form").style.display="none";
}
document.getElementById("recommended_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#shuffled_content_div").html())==''){//alert("rtn");
if(document.getElementById("index_page_shuffled_loadmore_form")){
document.getElementById("index_page_shuffled_loadmore_form").style.display="none";
}
document.getElementById("indexPageShuffle").style.display="none";
document.getElementById("shuffled_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("index_page_trending_loadmore_form")){
document.getElementById("index_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("index_page_fresh_loadmore_form")){
document.getElementById("index_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//savage page
if(window.location.pathname=='/meagl.com/savagememes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("savage_page_trending_loadmore_form")){
document.getElementById("savage_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("savage_page_fresh_loadmore_form")){
document.getElementById("savage_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//sports page
if(window.location.pathname=='/meagl.com/sportsmemes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("sports_page_trending_loadmore_form")){
document.getElementById("sports_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("sports_page_fresh_loadmore_form")){
document.getElementById("sports_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//celeb page
if(window.location.pathname=='/meagl.com/celebmemes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("celeb_page_trending_loadmore_form")){
document.getElementById("celeb_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("celeb_page_fresh_loadmore_form")){
document.getElementById("celeb_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//gaming page
if(window.location.pathname=='/meagl.com/gamingmemes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("gaming_page_fresh_loadmore_form")){
document.getElementById("gaming_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("gaming_page_fresh_loadmore_form")){
document.getElementById("gaming_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//comic page
if(window.location.pathname=='/meagl.com/comicmemes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("comics_page_trending_loadmore_form")){
document.getElementById("comics_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("comics_page_fresh_loadmore_form")){
document.getElementById("comics_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//justmythoughts page
if(window.location.pathname=='/meagl.com/justmythoughts.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("justmythoughts_page_trending_loadmore_form")){
document.getElementById("justmythoughts_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("justmythoughts_page_fresh_loadmore_form")){
document.getElementById("justmythoughts_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//other page
if(window.location.pathname=='/meagl.com/othermemes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("other_page_trending_loadmore_form")){
document.getElementById("other_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("other_page_fresh_loadmore_form")){
document.getElementById("other_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//college page
if(window.location.pathname=='/meagl.com/college_school_memes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("college_page_trending_loadmore_form")){
document.getElementById("college_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("college_page_fresh_loadmore_form")){
document.getElementById("college_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
//politics page
if(window.location.pathname=='/meagl.com/politics_memes.php'){
if($.trim($("#trending_content_div").html())==''){//alert("rtn");
if(document.getElementById("politics_page_trending_loadmore_form")){
document.getElementById("politics_page_trending_loadmore_form").style.display="none";
}
document.getElementById("trending_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
if($.trim($("#fresh_content_div").html())==''){//alert("rtn");
if(document.getElementById("politics_page_fresh_loadmore_form")){
document.getElementById("politics_page_fresh_loadmore_form").style.display="none";
}
document.getElementById("fresh_content_div").innerHTML="<p>No memes to be displayed.</p>";
}
}
});
$(document).ready(function(){
//alert(sessionId);
$(".load_more_memes_form").submit(function(e){
e.preventDefault();
//alert("undau");
var formData = new FormData(this);
var formtype=$(this).attr('id');
//alert(formtype);
$.ajax
({
type: 'POST',
url: 'functions.php',
data:formData,
//dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
success: function (response)
{
//alert("ikde ala re!");
//alert(response);
if(response.trim()!=""){
//this is to hide the load more form(rather button)
var i=response.length;
for(i=i-1;i>=0;i--)
{
if(response.charAt(i)==' ')
{
var str=response.substring(i);
//alert(str);
if(str==" hide_form")
{
document.getElementById(formtype).style.display="none";
var final_response=response.substring(0,i+1);
}
else
{
var final_response=response;
}
break;
}
}
//attaching the response data to the DOM
if(formtype=="index_page_recommended_loadmore_form"){
document.getElementById("recommended_content_div").innerHTML+=final_response;
}else if(formtype=="index_page_shuffled_loadmore_form"){
document.getElementById("shuffled_content_div").innerHTML+=final_response;
}
else if(formtype=="index_page_trending_loadmore_form" || formtype=="savage_page_trending_loadmore_form" || formtype=="sports_page_trending_loadmore_form" || formtype=="celeb_page_trending_loadmore_form" || formtype=="gaming_page_trending_loadmore_form" || formtype=="comics_page_trending_loadmore_form" || formtype=="justmythoughts_page_fresh_loadmore_form" || formtype=="other_page_fresh_loadmore_form" || formtype=="college_page_fresh_loadmore_form" || formtype=="politics_page_fresh_loadmore_form"){
document.getElementById("trending_content_div").innerHTML+=final_response;
}
else if(formtype=="index_page_fresh_loadmore_form" || formtype=="savage_page_fresh_loadmore_form" || formtype=="sports_page_fresh_loadmore_form" || formtype=="celeb_page_fresh_loadmore_form" || formtype=="gaming_page_fresh_loadmore_form" || formtype=="comics_page_fresh_loadmore_form" || formtype=="justmythoughts_page_fresh_loadmore_form" || formtype=="other_page_fresh_loadmore_form" || formtype=="college_page_fresh_loadmore_form" || formtype=="politics_page_fresh_loadmore_form"){
document.getElementById("fresh_content_div").innerHTML+=final_response;
}
else if(formtype=="my_memes_loadmore_form"){
document.getElementById("my_memes_content_div").innerHTML+=final_response;
}
else if(formtype=="subscribedcategories_loadmore_form"){
document.getElementById("subscribedcategories").innerHTML+=final_response;
}
else if(formtype=="all_subscribed_content_loadmore_form"){
document.getElementById("allcontent").innerHTML+=final_response;
}
else if(formtype=="questions_loadmore_form"){
document.getElementById("questions_content_div").innerHTML+=final_response;
}
}
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
return false;
})
});
/////////////////////////////////////////////////////
$(document).ready(function(){
$('img').bind('contextmenu', function(e){
return false;
});
});
//likes images Ajax function
function imagelikeFunction(imageId,likesLabel,errorLabel,likeButtonId){
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
//alert(document.getElementsByName(likesLabel)[0].innerHTML.match(/^\d+/));
var getnumber=(document.getElementsByName(likesLabel)[0].innerHTML).match(/^\d+/);//gets the number at the end of the string and then stores it in the zeroth position of an array
if(getnumber){
var numberOfLikesActual = parseInt(getnumber[0]);//converts the number which is stored in the form of string to an integer
}
//alert("numberOfLikesActual="+numberOfLikesActual);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
Ajaxresponse=xmlhttp.responseText;//the response from likesystem.php is obtained by "xml.responseText" and stored in the variable Ajaxresponse
//alert("Ajaxresponse="+Ajaxresponse);
//alert("number of likes="+numberOfLikesActual);
//alert("Ajaxresponse="+Ajaxresponse);
if(Ajaxresponse=="login error"){
//this will be executed if the user has not logged in
var elements =document.getElementsByName(errorLabel);
//the "error" paragraph tag has been created to specially display the error message
for ( i = 0; i < elements.length; i += 1) {
elements[i].innerHTML="You need to sign-in to like!";
}
}
else if(Ajaxresponse=="user meme"){
//this will be executed if the user is trying to like his own meme
var elements =document.getElementsByName(errorLabel);
//the "error" paragraph tag has been created to specially display the error message
for ( i = 0; i < elements.length; i += 1) {
elements[i].innerHTML="You cannot like your own meme!";
}
}
//else if(Ajaxresponse=="undo like"){
else if(Ajaxresponse<numberOfLikesActual){
//this will be executed if the user is trying to undo his like for the meme
//alert("undo like section..should now become like");
var elements=document.getElementsByName(likesLabel);
for ( i = 0; i < elements.length; i += 1) {
elements[i].innerHTML=Ajaxresponse+" likes";
}
/*var likeElements=document.getElementsByClassName("like-button"+imageId);
for ( i = 0; i < likeElements.length; i += 1) {
//likeElements[i].innerHTML="Like";
likeElements[i].src="icons/undo_like_icon.jpg";
}*/
//alert(document.getElementById("like"+imageId).src+" undo karing "+("like"+imageId));
//document.getElementById("like"+imageId).src = "icons/undo_like_icon.jpg";
//$(".like-button"+imageId).attr("src","icons/undo_like_icon.jpg");
$(".like-button"+imageId).html('<i class="fas fa-thumbs-up" style="font-size:38px;cursor:pointer;color:#BDBDBD"></i>');
}
else{
//this will be executed if the person has logged in
//alert(Ajaxresponse);
//alert("like section..should now become undo like");
//document.getElementById(likesLabel).innerHTML = "Likes:"+Ajaxresponse;//here, likesLabel is appended from the info received from likesystem.php
//document.getElementById("like"+imageId).innerHTML="Undo Like";
var elements=document.getElementsByName(likesLabel);
for ( i = 0; i < elements.length; i += 1) {
elements[i].innerHTML=Ajaxresponse+" likes";
}
/*var likeElements=document.getElementsByClassName("like-button"+imageId);
for ( i = 0; i < likeElements.length; i += 1) {
//likeElements[i].innerHTML="Undo Like";
likeElements[i].src="icons/like_icon.jpg";
}*/
//alert(document.getElementById("like"+imageId).src+" like karing "+("like"+imageId));
//document.getElementById("like"+imageId).src ="icons/like_icon.jpg";
//$(".like-button"+imageId).attr("src","icons/like_icon.jpg");
$(".like-button"+imageId).html('<i class="fas fa-thumbs-up" style="font-size:38px;cursor:pointer;color:#D81B60"></i>');
}
}
}
parameters="numberOfLikes="+numberOfLikesActual+"&id="+imageId;
xmlhttp.open("POST","imagelikesystem.php",true);
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');//this has to be written as it is
xmlhttp.send(parameters);
}
//subscribe(to meme uploader) system
function subscribeFunction(imageId,uploaderId,subscribeLabel,uploader){