Bluefield State University Online Bookstore (2024)

Table of Contents
MENU Campus Locations Textbooks
Skip Navigation

Bluefield State University Official Bookstore

Login/Sign Up

Shopping Cart (0)

Shopping Cart (0)

    SORT BY: MOST POPULAR

    • MOST POPULAR
    • NEWEST ITEMS
    • PRICE LOW TO HIGH
    • PRICE HIGH TO LOW

    FILTERS

          • Less than $25

          • $25 to $50

          • $50 to $100

          • $100 to $200

          • Over $200

            '); } function toggleFilter(element, name, apply, toggle) { var ele = $('#' + element); // Reset the page number. $('#fpage').val('1'); if (toggle) $(ele).prop('checked', !$(ele).prop('checked')); if ($(ele).prop('checked')) { $(ele).closest('.parent').removeClass('selected').addClass('selected'); addFilter(name, $(ele).val(), apply); } else { $(ele).closest('.parent').removeClass('selected'); removeFilter(name, $(ele).val(), apply); } } function removeCustomPriceRange() { removeFilter('min', '', false); removeFilter('max', '', false); applyFilters(); } function removeFilter(name, value, apply, refresh_all) { // Reset the page number. $('#fpage').val('1'); for (var i = 0; i < arrFilters.length; i++) { if (value == '' && arrFilters[i][0].toLowerCase() == name.toLowerCase()) { arrFilters[i][1] = ''; break; } else if (arrFilters[i][0].toLowerCase() == name.toLowerCase() && arrFilters[i][1].toLowerCase() == value.toLowerCase()) { arrFilters[i][1] = ''; break; } } if (name == 'min') $('#txtMinPrice').val(''); if (name == 'max') $('#txtMaxPrice').val(''); $('#filter-' + name + ' input[type=checkbox]').each(function () { if ($(this).val() == value) $(this).prop('checked', false); if (!$(this).prop('checked')) $(this).closest('.parent').removeClass('selected') }); $('#filter-' + name + ' input[type=radio]').each(function () { if ($(this).val() == value) $(this).prop('checked', false); if (!$(this).prop('checked')) $(this).closest('.parent').removeClass('selected') }); if (apply) { if (!refresh_all) addFilter(name + '-apply', '1', false, true); applyFilters(); } } function addFilter(name, value, apply, replace) { // Reset the page number. $('#fpage').val('1'); var bReplaced = false; if (replace) { for (var i = 0; i < arrFilters.length; i++) { if (arrFilters[i][0].toLowerCase() == name.toLowerCase()) { arrFilters[i][1] = value; bReplaced = true; } } } if (!bReplaced) arrFilters.push([name, value]); if (apply) { addFilter(name + '-apply', '1', false, true); applyFilters(); } } function applyMinMaxPriceFilter() { var min = $('#txtMinPrice').val().trim(); var max = $('#txtMaxPrice').val().trim(); if (!isNaN(min)) addFilter('min', min, false, true); if (!isNaN(max)) addFilter('max', max, false, true); applyFilters(); } function applyFilters(focus_on_first_result) { var qs = ''; var qs_canonical = ''; var filter = ''; arrFilters.sort(sortFilterArray); for (var i = 0; i < arrFilters.length; i++) { if (arrFilters[i][0] != filter) { if (qs.length > 0) { // Remove any trailing pipe. if (qs.substring(qs.length - 1, qs.length) == '|') qs = qs.substring(0, qs.length - 1); } if (qs_canonical.length > 0) { // Remove any trailing pipe. if (qs_canonical.substring(qs_canonical.length - 1, qs_canonical.length) == '|') qs_canonical = qs_canonical.substring(0, qs_canonical.length - 1); } //console.debug(arrFilters[i][0]); qs = qs + '&' + arrFilters[i][0] + '='; if (arrFilters[i][0].toLowerCase() == 'cat1' || arrFilters[i][0].toLowerCase() == 'cat2' || arrFilters[i][0].toLowerCase() == 'cat3' || arrFilters[i][0].toLowerCase() == 'sort') qs_canonical = qs_canonical + '&' + arrFilters[i][0] + '='; filter = arrFilters[i][0]; } if (arrFilters[i][1] != '') { if (filter.toLowerCase() == 'cat1' || filter.toLowerCase() == 'cat2' || filter.toLowerCase() == 'cat3' || filter.toLowerCase() == 'sort') qs_canonical = qs_canonical + encodeURIComponent(arrFilters[i][1]) + '|'; qs = qs + encodeURIComponent(arrFilters[i][1]) + '|'; } if (arrFilters[i][0].indexOf('-apply') > 0) arrFilters[i][1] = ''; } // Remove any trailing pipe. if (qs.substring(qs.length - 1, qs.length) == '|') qs = qs.substring(0, qs.length - 1); if (qs_canonical.substring(qs_canonical.length - 1, qs_canonical.length) == '|') qs_canonical = qs_canonical.substring(0, qs_canonical.length - 1); qs += '&page=' + $('#fpage').val(); qs += '&s=6618'; qs += qs_additional; qs_canonical += '&page=' + $('#fpage').val(); qs_canonical += '&s=6618'; // Remove any leading ampersand. if (qs.length > 0 && qs.substr(0, 1) == '&') qs = qs.substring(1); if (qs_canonical.length > 0 && qs_canonical.substr(0, 1) == '&') qs_canonical = qs_canonical.substring(1); // Update the url for the purpose of the link working. window.history.pushState('', '', '/merch-results?' + qs); $('link[rel="canonical"]').attr('href', 'https://bluefieldstate.ecampus.com/merch-results?' + qs_canonical); updateResults(qs, focus_on_first_result); } function updateResults(data, focus_on_first_result) { // Show the wait on the results. $('#results').html('\\

            Loading products

            '); intRequest++; var request = intRequest; getMerchResults(data).then(response => { if (intRequest == request) { if (response.indexOf('') >= 0) { $('#results').html(response); if (focus_on_first_result) $('#results a').first().focus(); } else showError('Oops! There was an error with this request. Please try again later.'); } }).catch(e => { if (intRequest == request) showError(e); }); } function getMerchResults(data) { return new Promise(function (resolve, reject) { $.ajax({ type: 'get', url: '/include/merch-results', data: data, cache: false, timeout: 20000 }) .done(function (html) { resolve(html); }) .fail(function (jqXHR, status, error) { if (jqXHR.status == 0 && error != "") { // Send the error email. sendEmail("VBS Javascript Error in /merch-results-2", "Error in /merch-results-2 [getMerchResults()]

            " + "/include/merch-results

            " + status + ": " + error); } reject('Oops! There was an error and our team has been notified. Please try again later.'); }); }); } function scrollToResults() { $('html, body').animate({ scrollTop: $('.merch-results .main').offset().top }, 200); } function loadPage(page) { $('#fpage').val(page); applyFilters(true); scrollToResults(); } $(document).ready(function () { tmplv2_merch_results_response(tmplv2_merch_results_768); tmplv2_merch_results_response(tmplv2_merch_results_1200); tmplv2_merch_results_768.addListener(tmplv2_merch_results_response); tmplv2_merch_results_1200.addListener(tmplv2_merch_results_response); $('#filters button, #filters a, #filters input, #filters').on('blur', function () { if (!tmplv2_merch_results_1200.matches) { // Close menu on outside focus/click. setTimeout(function () { if ($(document.activeElement).attr('id') != 'btnFilters' && $(document.activeElement).attr('id') != 'btnFiltersMobile' && $(document.activeElement).closest('#filters').length < 1) { closeFilters(); } }, 1); } }); $(".price-range input[type=text]").keypress(function (event) { if (event.keyCode === 13) { applyMinMaxPriceFilter(); } }); addFilter('sale', '0', false, true); addFilter('sort', 'popular', false, true); // Load the initial results. applyFilters(); });

            Bluefield State University Online Bookstore (2024)
            Top Articles
            What Is an HDCP Error and How Can You Get Around It?
            Powell And Sons Pool
            I Make $36,000 a Year, How Much House Can I Afford | SoFi
            Crocodile Tears - Quest
            Big Spring Skip The Games
            Aiken County government, school officials promote penny tax in North Augusta
            Khatrimaza Movies
            Ou Class Nav
            Cashtapp Atm Near Me
            Vermont Craigs List
            Nhl Tankathon Mock Draft
            Tinker Repo
            Adt Residential Sales Representative Salary
            Busted News Bowie County
            TeamNet | Agilio Software
            Apparent assassination attempt | Suspect never had Trump in sight, did not get off shot: Officials
            Student Portal Stvt
            2023 Ford Bronco Raptor for sale - Dallas, TX - craigslist
            Waters Funeral Home Vandalia Obituaries
            Expression&nbsp;Home&nbsp;XP-452 | Grand public | Imprimantes jet d'encre | Imprimantes | Produits | Epson France
            Mcclendon's Near Me
            Umn Biology
            Viduthalai Movie Download
            Alternatieven - Acteamo - WebCatalog
            Downloahub
            Mastering Serpentine Belt Replacement: A Step-by-Step Guide | The Motor Guy
            134 Paige St. Owego Ny
            6465319333
            Ellafeet.official
            Sf Bay Area Craigslist Com
            Mbi Auto Discount Code
            Babbychula
            Tributes flow for Soundgarden singer Chris Cornell as cause of death revealed
            #scandalous stars | astrognossienne
            Xemu Vs Cxbx
            Pensacola 311 Citizen Support | City of Pensacola, Florida Official Website
            Greater Keene Men's Softball
            Section 212 at MetLife Stadium
            Sam's Club Gas Prices Florence Sc
            Jack In The Box Menu 2022
            Ehome America Coupon Code
            Elven Steel Ore Sun Haven
            Sapphire Pine Grove
            Pas Bcbs Prefix
            Canonnier Beachcomber Golf Resort & Spa (Pointe aux Canonniers): Alle Infos zum Hotel
            Big Brother 23: Wiki, Vote, Cast, Release Date, Contestants, Winner, Elimination
            Diario Las Americas Rentas Hialeah
            Craigslist Free Cats Near Me
            Festival Gas Rewards Log In
            Jovan Pulitzer Telegram
            Ravenna Greataxe
            Latest Posts
            Article information

            Author: Jerrold Considine

            Last Updated:

            Views: 5886

            Rating: 4.8 / 5 (58 voted)

            Reviews: 81% of readers found this page helpful

            Author information

            Name: Jerrold Considine

            Birthday: 1993-11-03

            Address: Suite 447 3463 Marybelle Circles, New Marlin, AL 20765

            Phone: +5816749283868

            Job: Sales Executive

            Hobby: Air sports, Sand art, Electronics, LARPing, Baseball, Book restoration, Puzzles

            Introduction: My name is Jerrold Considine, I am a combative, cheerful, encouraging, happy, enthusiastic, funny, kind person who loves writing and wants to share my knowledge and understanding with you.