We use cookies to improve your experience. By using our website, you agree to our Terms and Privacy Policy.

DVI-D Dual Link Digital Visual Interface Cable 1m 24K Gold Plugs - 2m length

The Digital Visual Interface (DVI) is a video interface designed to provide high quality digital display on devices such as flat panel LCD computer displays and digital projectors. There are different versions of DVI designed for Analog, digital or a combination of both.

Our DVI-D cables are designed for use with digital only devices and are available in 1m, 2m, 3m, 5m and 10m lenghts.

  • DVI-D Dual Link
  • Supports Dual Link resolutions
  • 25 Pin
  • 28 AWG
  • With Ferrite
  • Gold flashed contacts
0; }) // Remove empty strings .slice(0, 1) // Take first word .join(''); } // Fallback if query is empty after processing if (!query || query.trim() === '') { query = 'default'; // or handle this case as needed } } catch (e) { console.warn('Error processing query:', e); query = 'default'; } $.ajax({ url: '/api/search/results/json?pageId=26543&query='+encodeURIComponent(query), type: 'GET', dataType: 'json', timeout: 1000, // Add timeout success: function (data) { try { // Check if data exists and has items property if (!data || !data.items || !Array.isArray(data.items)) { console.warn('No valid data received'); $('.related-products-list').html('

No related products found.

'); return; } // Filter data safely var filteredData = data.items.filter(function (item) { return item && item.id && !excludeIds.includes(item.id.toString()); }); // Check if we have any items after filtering if (filteredData.length === 0) { $('.related-products-list').html('

No related products available.

'); return; } data.items = filteredData; // Safely compile template var templateScript = $('#related-products-template').html(); if (!templateScript) { console.error('Template not found'); $('.related-products-list').html('

Template error.

'); return; } var template = Handlebars.compile(templateScript); var compiledHtml = template(data); // Check if target element exists if ($('.related-products-list').length > 0) { $('.related-products-list').html(compiledHtml); } else { console.warn('Target element .related-products-list not found'); } } catch (e) { console.error('Error processing success response:', e); $('.related-products-list').html('

Error displaying products.

'); } }, error: function (xhr, status, error) { console.error('AJAX Error:', { status: status, error: error, responseText: xhr.responseText }); // Provide different messages based on error type var errorMessage = '

Unable to load related products at this time.

'; if (status === 'timeout') { errorMessage = '

Request timed out. Please try again.

'; } else if (status === 'parsererror') { errorMessage = '

Data format error.

'; } if ($('.related-products-list').length > 0) { $('.related-products-list').html(errorMessage); } } }); // Safely handle post-load operations setTimeout(function () { try { var ajaxContent = $('#ajax-load-content'); if (ajaxContent.length > 0) { ajaxContent.find('img').addClass('img-responsive'); } var loading = $('#loading'); if (loading.length > 0) { loading.hide(); } } catch (e) { console.warn('Error in post-load operations:', e); } }, 2000); } $(window).on('hashchange', function() { try { var hash = location.hash.substring(1); // Handle empty hash if (!hash) { // Safely construct default hash with null checks var table = typeof $get !== 'undefined' && $get && $get.table ? $get.table : 'default'; var id = typeof $get !== 'undefined' && $get && $get.id ? $get.id : '1'; document.location.hash = table + '.' + id; return; } // Check if hash contains a dot if (hash.indexOf(".") !== -1) { var content = hash.split("."); if (content.length >= 2) { var type = content[0]; var id = content[1]; // Validate type and id if (!type || !id) { console.warn('Invalid hash format'); return; } if (type === 'products' || type === 'services' || type === 'files') { // Check if functions exist before calling if (typeof getSells === 'function') { getSells(type, id); } else { console.warn('getSells function not found'); } loadRelated(); } else { if (type === 'offers') { if (typeof getOffer === 'function') { getOffer(type, id); } else { console.warn('getOffer function not found'); } } else { if (typeof getContent === 'function') { getContent(type, id); } else { console.warn('getContent function not found'); } } } } else { console.warn('Invalid hash content format'); } } else { console.warn('Hash does not contain dot separator'); } } catch (e) { console.error('Error in hashchange handler:', e); } });