Papa Cartridge Needle | Nuclear Tattoo Medical Supply (2025)

Explore our selection of Papa Tattoo Cartridge Needles – sterile, disposable, and compatible with most rotary tattoo machines. Ideal for precise lining, shading, and coloring.

  • Papa Cartridges

    Starting From: $10.00

    View Details

  • Papa Premium Cartridge

    Starting From: $12.50

    View Details

').insertBefore(priceEl); } } }); } if(json.search_status_flag_data){ json.search_status_flag_data.each(function(statusFlagData, index){ if(statusFlagData.product_id){ var priceEl = jQuery('#'+priceIdKey+statusFlagData.product_id); if(priceEl){ jQuery(statusFlagData.html).insertBefore(priceEl); } } }); } if(json.search_wishlist_data){ Object.keys(json.search_wishlist_data).each(function(productId, index){ if(productId){ var html = json.search_wishlist_data[productId].html; jQuery('#klevu-a2c-' + productId).css({display: 'block'}).append(html); } }); } if(json.prices_replace_orig){ json.prices_replace_orig.each(function(productId){ var origPriceClass = ''; var specPriceClass = ''; if(priceIdKey === 'klevu-price-'){ origPriceClass = 'kuOrigPrice'; specPriceClass = 'kuSpecialPrice'; } else if(priceIdKey === 'klevu-qs-price_'){ origPriceClass = 'klevu-origprice-l2'; specPriceClass = 'klevu-special-price-l2'; } var el = jQuery('#'+priceIdKey+productId+' .'+origPriceClass); var el2 = jQuery('#'+priceIdKey+productId+' .'+specPriceClass); if(el && el2){ el.remove(); el2.prepend('Starting at '); } }); } if(json.as_low_as_prices) { json.as_low_as_prices.each(function(asLowAsInfo){ let productId = asLowAsInfo.id; let asLowAsPrice = asLowAsInfo.price; let klevuPriceEl = jQuery('#klevu-price-'+productId); if(klevuPriceEl && klevuPriceEl.html()) { klevuPriceEl.append('As low as: '+asLowAsPrice+'') } }); } isKlevuAjaxDataSearchRunning = false; // Reload ajaxSuite if flagged if(json.config.ajaxSuite) { if (typeof window.pix !== 'undefined' && window.pix.hasOwnProperty('PixAjaxSuite')) { window.pix.PixAjaxSuite._initAddtocart(); } } if(json.final_price_only) { jQuery('.kuOrigPrice').remove(); jQuery('.klevu-origprice-l2').remove(); } else if(json.prices_hide_orig) { json.prices_hide_orig.each(function(productId) { var priceEl = jQuery('#'+productId); if(priceEl) { var origPriceEl = jQuery('#klevu-price-'+productId+' .kuOrigPrice'); var salePriceEl = jQuery('#klevu-price-'+productId+' .kuSalePrice.kuSpecialPrice'); if(origPriceEl && salePriceEl) { origPriceEl.remove(); salePriceEl.removeClass('kuSpecialPrice'); } } }); } if (json.qty_config) { json.qty_config.forEach(function(conf) { var qtyEl = jQuery('#klevu-qty-' + conf.productId); qtyEl.attr('type', 'number'); qtyEl.attr('min', 0); qtyEl.attr('step', conf.increment); qtyEl.attr('value', conf.default_add_to_cart_qty); qtyEl.change(function() { var curVal = parseFloat(qtyEl.val()); if(curVal < 0) { qtyEl.val(0); } }.bind(qtyEl)); }); } jQuery(function($){ $('.kuAddtocartBtn').addClass('button'); $('.kuAddtoquoteBtn').addClass('button').addClass('button2'); $(".kuPagination").each(function() { // Removing unecessary whitespace $(this).html(function (i, html) { return html.replace(//g, ''); }); // adding icons to pagination $(this).find('a[title="First"]').html(''); $(this).find('a[title="Previous"]').attr('rel', 'previous').html(''); $(this).find('a[title="Last"]').html(''); $(this).find('a[title="Next"]').attr('rel', 'next').html(''); // wrapping three dots in a span $(this).html(function (i, html) { return html.replace('...', ''); }); }); // removing the hidden add to cart buttons because it affects the layout $('#pix-fe .kuAddtocart a[style*="visibility:hidden"]').remove(); // wrapping everything but the image in a div in list view $('#kuLandingProductsListUl li').each(function(index){ $(this).children().not('.klevuImgWrap').wrapAll("

") }) // moving sku to the top right in list view // $('#kuLandingProductsListUl li').each(function(index){ // $(this).find( ".kuAttr > div:first-child" ).addClass('klevuSku').insertBefore( $(this).find( ".kuAttr" ) ); // }) }); jQuery('.kuPrice').each(function(id, el) { var $el = jQuery(el); var $priceEl = $el.find('.kuOrigPrice'); var $specialPriceEl = $el.find('.kuSpecialPrice'); if ($priceEl.length && $specialPriceEl.length) { const priceMatch = $priceEl.text().match(/\d+/g); const specialPriceMatch = $specialPriceEl.text().match(/\d+/g); var priceVal = typeof priceMatch === 'string' ? +priceMatch.join('') : ''; var specialPriceVal = typeof specialPriceMatch === 'string' ? +specialPriceMatch.join('') : ''; if (specialPriceVal > priceVal) { $priceEl.remove(); $specialPriceEl.removeClass('kuSpecialPrice'); } } }) jQuery('.klevu-ajax-price').each(function(id, el) { var $el = jQuery(el); var $priceEl = $el.find('.klevu-origprice-l2'); var $specialPriceEl = $el.find('.klevu-saleprice-l2'); if ($priceEl.length && $specialPriceEl.length) { const priceMatch = $priceEl.text().match(/\d+/g); const specialPriceMatch = $specialPriceEl.text().match(/\d+/g); var priceVal = typeof priceMatch === 'string' ? +priceMatch.join('') : ''; var specialPriceVal = typeof specialPriceMatch === 'string' ? +specialPriceMatch.join('') : ''; if (specialPriceVal > priceVal) { $priceEl.remove(); $specialPriceEl.removeClass('klevu-saleprice-l2'); } } }) jQuery('.kuGridView #kuLandingProductsListUl').children('li').each(function(index, item) { var parentEl = jQuery(item); var a2cEl = parentEl.find('.kuAddtocart'); var childrenHeights = 0; parentEl.children().each(function(index, child){ var $child = jQuery(child); childrenHeights += $child.outerHeight(); var marginTop = parseFloat($child.css('marginTop')); var marginBottom = parseFloat($child.css('marginBottom')); if (marginTop) childrenHeights += marginTop; if (marginBottom) childrenHeights += marginBottom; }) var topPadding = 10; // parentEl.css({ minHeight: childrenHeights + topPadding }); Removing min height for now }); // Remove spinner deferLoadComplete(); } }); }

Papa Cartridge Needle | Nuclear Tattoo Medical Supply (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Madonna Wisozk

Last Updated:

Views: 6083

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.