-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
694 lines (625 loc) · 34.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="dsgiving via DonorSearch provides wealth and philanthropy screening services, analytics, and fundraising solutions to nonprofits" />
<meta name="author" content="DonorSearch" />
<meta name="keywords" content="prospect research, donor search, donorsearch, charitable giving database, fundraising, philanthropy, major giving, nonprofits">
<title>DSGIVING | A DonorSearch Free Prospect Research Tool</title>
<link rel="shortcut icon" type="image/png" href="assets/img/logo-green.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.12.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<script type="text/javascript">
//<![CDATA[
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-66075798-1', 'auto');ga('send', 'pageview');
//]]>
</script>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img class="img1" src="assets/img/dsLogo-black-500.png" />
<img class="img2" src="assets/img/dslogo-green.png" />
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">Menu<i class="fas fa-bars ml-1"></i></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#search">search</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#solutions">solutions</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">about</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#contact">Contact</a></li>
<li class="nav-item"></li><a class="nav-link btn btn-secondary btn-lg text-uppercase js-scroll-trigger dsLink" href="https://www.donorsearch.net/get-a-demo">learn more</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div class="container dsHeading">
<div class="masthead-heading text-uppercase"><small>Welcome To </small>DSGIVING!</div>
<div class="masthead-subheading">A FREE DonorSearch Prospect Research Tool</div>
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#search">GET STARTED</a>
</div>
</header>
<!-- search-->
<section class="page-section bg-light" id="search">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">FIND YOUR PROSPECT</h2>
<h3 class="section-subheading ">Enter name and state below and select what information you'd like to see and how you'd like to see it.</h3>
</div>
<form id="contactForm" name="sentMessage" novalidate="novalidate">
<div class="row align-items-stretch mb-5">
<div class="col-xs-12 col-md-4 offset-md-4">
<div class="form-group">
<label for="NAME">NAME or BUSINESS</label>
<input class="form-control" id="searchbox" type="text" placeholder="Name OR Business Name*" required="required" data-validation-required-message="Please enter your name." />
<p class="message help-block text-danger"></p>
</div>
<div class="form-group">
<label for="STATE">STATE</label>
<select id="state" style="font-size: 1em;" class="sel-primary form-control selectpicker">
<option value="ZZ">
ANY
</option>
<option value="AL">
Alabama
</option>
<option value="AK">
Alaska
</option>
<option value="AZ">
Arizona
</option>
<option value="AR">
Arkansas
</option>
<option value="CA">
California
</option>
<option value="CO">
Colorado
</option>
<option value="CT">
Connecticut
</option>
<option value="DE">
Delaware
</option>
<option value="DC">
District Of Columbia
</option>
<option value="FL">
Florida
</option>
<option value="GA">
Georgia
</option>
<option value="HI">
Hawaii
</option>
<option value="ID">
Idaho
</option>
<option value="IL">
Illinois
</option>
<option value="IN">
Indiana
</option>
<option value="IA">
Iowa
</option>
<option value="KS">
Kansas
</option>
<option value="KY">
Kentucky
</option>
<option value="LA">
Louisiana
</option>
<option value="ME">
Maine
</option>
<option value="MD">
Maryland
</option>
<option value="MA">
Massachusetts
</option>
<option value="MI">
Michigan
</option>
<option value="MN">
Minnesota
</option>
<option value="MS">
Mississippi
</option>
<option value="MO">
Missouri
</option>
<option value="MT">
Montana
</option>
<option value="NE">
Nebraska
</option>
<option value="NV">
Nevada
</option>
<option value="NH">
New Hampshire
</option>
<option value="NJ">
New Jersey
</option>
<option value="NM">
New Mexico
</option>
<option value="NY">
New York
</option>
<option value="NC">
North Carolina
</option>
<option value="ND">
North Dakota
</option>
<option value="OH">
Ohio
</option>
<option value="OK">
Oklahoma
</option>
<option value="OR">
Oregon
</option>
<option value="PA">
Pennsylvania
</option>
<option value="RI">
Rhode Island
</option>
<option value="SC">
South Carolina
</option>
<option value="SD">
South Dakota
</option>
<option value="TN">
Tennessee
</option>
<option value="TX">
Texas
</option>
<option value="UT">
Utah
</option>
<option value="VT">
Vermont
</option>
<option value="VA">
Virginia
</option>
<option value="WA">
Washington
</option>
<option value="WV">
West Virginia
</option>
<option value="WI">
Wisconsin
</option>
<option value="WY">
Wyoming
</option>
</select>
<p class="help-block text-danger"></p>
</div>
<div class="form-group mb-md-0">
<label for="state">GIFT TYPES</label>
<div class="btn-group btn-group-justified" data-toggle="buttons-radio" style="width: 100%;" id="showGifts">
<a id="sg1" class="btn btn-default btn-secondary btn-lg" data-toggle="button" value="1" onclick="sgSelect(this);">All</a> <a id="sg2" class="btn btn-default btn-lg" data-toggle="button" value="3" onclick="sgSelect(this);">Charitable</a> <a id="sg3" class="btn btn-default btn-lg" data-toggle="button" value="2" onclick="sgSelect(this);">Political</a>
</div>
<p class="help-block text-danger"></p>
</div>
<div class="form-group mb-md-0">
<label for="state">ORDER BY</label>
<div class="btn-group btn-group-justified" style="width: 100%;" id="orderBy" data-toggle="buttons-radio">
<a id="type1" name="typeSelect" type="radio" class="btn btn-default btn-secondary btn-lg" value="1" onclick="typeSelect(this)" data-toggle="button">Gift Year</a> <a id="type2" name="typeSelect" type="radio" class="btn btn-default btn-lg" value="2" onclick="typeSelect(this)" data-toggle="button">Amount</a>
</div>
<p class="help-block text-danger"></p>
</div>
</div>
</div>
<div class="text-center">
<div id="success"></div>
<a id='dsgiving-search' class="btn btn-primary btn-xl text-uppercase submit-search" data-target="#myModalFullscreen" onclick="send();" >SEARCH</a>
</div>
</form>
</div>
</section>
<!-- Clients-->
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/ww-logo.png" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/logo-nature-notagline.png" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/Mercy-Health-Provider.png" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/mit.png" alt="" /></a>
</div>
</div>
</div>
</section>
<!-- solutions-->
<section class="page-section bg-light" id="solutions">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">DonorSearch Solutions</h2>
<h3 class="section-subheading ">Through proven philanthropy and wealth analytics, DonorSearch’s prospect screening service and powerful research platform provide accurate and actionable insights which identify your best principal, major, annual, and planned gift donor prospects.</h3>
</div>
<div class="row text-center">
<div class="col-md-4 ">
<div class="col-md-12 bg-white">
<span ><img class="img-fluid" src="assets/img/dsprofile-stacked-mobile.png" alt="profile stacked image"></span>
<h4 class="my-3">ProspectView Online</h4>
<p class="text-muted">Our robust online tools allow you to uncover your best donors and prospects. Summarize, analyze and filter results utilizing our Keyword Search and Executive Analysis functionality.</p>
<a href="https://www.donorsearch.net//prospectview-online/" class="btn btn-primary btn-xl text-uppercase" id="prospect" >LEARN MORE</a>
</div>
</div>
<div class="col-md-4 ">
<div class="col-md-12 bg-white">
<span ><img class="img-fluid" src="assets/img/wealthScreeningInfographic-small.png" alt="profile stacked image"></span>
<h4 class="my-3">Wealth Screening</h4>
<p class="text-muted">Wealth screening is a powerful tool that nonprofits can use to help determine donors’ capacities to give. Use screenings to find major donors, create realistic fundraising goals and plan your direct asks. </p>
<a id="wealth" class="btn btn-primary btn-xl text-uppercase" href="https://www.donorsearch.net/wealth-screening/">LEARN MORE</a>
</div>
</div>
<div class="col-md-4 ">
<div class="col-md-12 bg-white">
<span ><img class="img-fluid" src="assets/img/donorsearch-API.png" alt="profile stacked image"></span>
<h4 class="my-3">Wealth Screening API</h4>
<p class="text-muted">Plug into our powerful API to integrate DonorSearch’s wealth and philanthropic data with your own prospect information and enrich your current donor list.</p>
<a href="https://www.donorsearch.net/api-3/" class="btn btn-primary btn-xl text-uppercase" id="api">LEARN MORE</div></a>
</div>
</div>
</div>
</div>
</section>
:
<!-- About-->
<section class="page-section" id="about">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">About DonorSearch</h2>
<h3 class="section-subheading ">A family owned prospect research company</h3>
</div>
<ul class="timeline">
<li>
<div class="timeline-image"> <img class="rounded-circle img-fluid" src="assets/img/dslogo-blue.jpg" alt="ds logo" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2007</h4>
<h4 class="subheading">OUR HUMBLE BEGINNINGS</h4>
</div>
<div class="timeline-body"><p class="text-muted">DonorSearch was founded in 2007 with one goal: to provide more accurate, more comprehensive, more actionable data to help nonprofits of all types achieve better fundraising and outreach results. Using information from dozens of databases, DonorSearch uses proprietary algorithms to help clients find the best philanthropic prospects. Come see why thousands of nonprofit organizations trust DonorSearch today.</p></div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/mission.png" alt="donorsearch mission" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">MISSION</h4>
</div>
<div class="timeline-body"><p class="text-muted">To provide premier donor intelligence data and solutions to nonprofits of all shapes and sizes to strengthen their financial capacity.</p></div>
</div>
</li>
<li>
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/vision.png" alt="donorsearch vision" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">VISION</h4>
</div>
<div class="timeline-body"><p class="text-muted">
To one day make premier prospect research and intelligence data available to ALL nonprofits, regardless of size or budget.
</p></div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/difference.png" alt="donorsearch advantage" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="subheading">DONORSEARCH ADVANTAGE</h4>
</div>
<div class="timeline-body"><p class="text-muted">Company products, services, and the business model are predicated on Bill Tedesco’s vision for a level playing field in fundraising – Accessible, accurate, and affordable prospect information and best-in-class customer support.</p></div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<a href="https://www.donorsearch.net"><h4>FIND<br />OUT<br />MORE!</h4></a>
</div>
</li>
</ul>
</div>
</section>
<!-- Contact-->
<section id="contact" class="contact-section bg-secondary">
<div class="container">
<div class="col-lg-8 mx-auto">
<h2 class="text-center text-white mb-4">CONTACT</h2>
</div>
<div class="row">
<div class="col-md-4 mb-3 mb-md-0">
<div class="card py-4 h-100">
<div class="card-body text-center">
<i class="fas fa-map-marked-alt text-primary mb-2"></i>
<h4 class="text-uppercase m-0">Address</h4>
<hr class="my-4">
<div class="small text-black-50">11245 Dovedale Ct. Marriottsville, MD 21104</div>
</div>
</div>
</div>
<div class="col-md-4 mb-3 mb-md-0">
<div class="card py-4 h-100">
<div class="card-body text-center">
<i class="fas fa-envelope text-primary mb-2"></i>
<h4 class="text-uppercase m-0">Email</h4>
<hr class="my-4">
<div class="small text-black-50">
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-3 mb-md-0">
<div class="card py-4 h-100">
<div class="card-body text-center">
<i class="fas fa-mobile-alt text-primary mb-2"></i>
<h4 class="text-uppercase m-0">Phone</h4>
<hr class="my-4">
<div class="small text-black-50">410.670.7880</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="footer py-4">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 text-lg-left">Copyright © DonorSearch 2020</div>
<div class="col-lg-4 my-3 my-lg-0">
<a class="btn btn-dark btn-social mx-2" href="https://twitter.com/DonorSearch"><i class="fab fa-twitter"></i></a><a class="btn btn-dark btn-social mx-2" href="https://www.facebook.com/pages/DonorSearchnet/190475687664373"><i class="fab fa-facebook-f"></i></a><a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/williamtedesco"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="col-lg-4 text-lg-right"><a class="mr-3" href="https://www.donorsearch.net/wp-content/uploads/2019/12/DS-Privacy-Policy.pdf">Privacy Policy</a><a href="https://www.donorsearch.net/privacy/">Do not sell my information</a></div>
</div>
</div>
</footer>
<!-- capture lead / shown when search box clicked and dsHS cookie not found. Hubspot form -->
<div class="modal fade" id="captureModal" tabindex="-1" role="dialog" aria-labelledby=
"captureModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="captureHeaderTop">
<center>
<h4 class="modal-title" id="captureModalLabel"> </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="captureModalForm">
<p>Thanks for using DSGIVING. Tell us a little about yourself. </p>
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script>
<script>
//
// IMPORTANT - THIS IS A LIVE FORM.
//
hbspt.forms.create({
portalId: "6348498",
formId: "4d4f7cef-855d-4224-a800-a2c856f0daa7",
onFormSubmitted: function($form) {
// create hubspot event
var searchName = $("#searchbox").val();
// track event in analytics
ga('send', 'event', 'form', 'formSubmit', 'leadCapture');
//
// hide hubspot form and show results modal
// and set cookie
setCookie("hsDS10", "Y", 365);
visit10 = "Y";
$("#captureModal").modal("hide");
$("#myModal").modal("show");
}
});
</script>
</div>
</div>
</div>
</div>
<!-- screening offer / Hubspot form -->
<div class="modal fade" id="screenModal" tabindex="-1" role="dialog" aria-labelledby=
"screenModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="screenHeaderTop">
<center>
<h4 class="modal-title" id="screenModalLabel">Get a free screening of 200 records! </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="screenModalForm">
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script>
hbspt.forms.create({
portalId: "6348498",
formId: "cf576f9b-845d-4463-b4c2-c5ca22b70d76",
onFormSubmitted: function($form) {
// track event in analytics
ga('send', 'event', 'form', 'formSubmit', 'screeningOffer');
$("#screenModal").modal("hide");
$("#myModal").modal("show");
}
});
</script>
</div>
</div>
</div>
</div>
<!-- client feedback / Hubspot form -->
<div class="modal fade" id="clientModal" tabindex="-1" role="dialog" aria-labelledby=
"clientModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="clientHeaderTop">
<center>
<h4 class="modal-title" id="clientModalLabel">So glad you're enjoying DSGIVING! </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="clientModalForm">
<p>Help us to improve our product by giving us some feedback.</p>
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script>
hbspt.forms.create({
portalId: "6348498",
formId: "fe7635f4-4140-46f8-9eb7-47175c3d422d",
onFormSubmitted: function($form) {
$("#clientModal").modal("hide");
$("#myModal").modal("show");
setCookie("hsDS25", "Y", 365);
superuser = 'Y';
}
});
</script>
</div>
</div>
</div>
</div>
<!-- demo request / Hubspot form -->
<div class="modal fade" id="demoModal" tabindex="-1" role="dialog" aria-labelledby=
"demoModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="demoHeaderTop">
<center>
<h4 class="modal-title" id="demoModalLabel">So glad you're enjoying DSGIVING! </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="demoModalForm">
<p>Let's get started! Fill out the information below to get started with your free trial.</p>
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script>
hbspt.forms.create({
portalId: "6348498",
formId: "d2702acc-a779-4f04-8c4f-362ebe2c5b5e",
onFormSubmitted: function($form) {
// track event in analytics
ga('send', 'event', 'form', 'formSubmit', 'demoRequest');
$("#demoModal").modal("hide");
$("#myModal").modal("show");
setCookie("hsDS25", "N", 365);
superuser = 'N';
}
});
</script>
</div>
</div>
</div>
</div>
<!-- limit reached -->
<div class="modal fade" id="limitModal" tabindex="-1" role="dialog" aria-labelledby=
"limitModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="limitHeaderTop">
<center>
<h4 class="modal-title" id="limitModalLabel">Glad to see you're enjoying DSGIVING! </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="limitModalForm">
<p> Let's get you set up with a free trial. That way you'll have full access to
all of our comprehensive datasets and analytics tools in order to help you find the hidden potential in your
donor pool. </p>
</div>
<a class="btn btn-primary btn-xl text-uppercase submit-search" onclick="getDemo();" id="getDemo" href="#">GET STARTED WITH DONORSEARCH</a>
<a class="btn btn-primary btn-xl text-uppercase submit-search" onclick="currentClient();" id="currentClient" href="#">ALREADY A CLIENT?</a>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" onclick=
"resultsClose();">Close</button>
</div>
</div>
</div>
</div>
<!-- the results / modal below hidden until hubspot forms submit or newVisitor false -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby=
"myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" id="headerTop">
<center>
<h4 class="modal-title" id="myModalLabel"> </h4>
</center>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"
onclick="resultsClose();"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" id="resultsModal">
<center>
<div class="loader" id="loader" width="50%" height="100px"></div>
</center>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" onclick=
"resultsClose();">Close</button>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Core and DonorSearch JS-->
<script src="js/scripts.js"></script>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/6348498.js"></script>
<!-- End of HubSpot Embed Code -->
</body>
</html>