Kā iespējot/atspējot pogu, izmantojot jQuery?

Kā iespējot/atspējot pogu, izmantojot jQuery?

Pogas iespējošana/atspējošana, izmantojot jQuery, ietver tās funkcionalitātes maiņu, lai vai nu pieņemtu lietotāja ievadi, vai ne. Parasti tas tiek darīts, manipulējot ar tā 'atspējoto' rekvizītu vai atribūtu, izmantojot jQuery metodes, piemēram, '.prop()' vai '.attr()'.

Lai iespējotu/atspējotu pogu, izmantojot jQuery, jums ir nepieciešama pamata HTML struktūra kopā ar JavaScript/jQuery. Tālāk ir sniegta vienkārša koda struktūra, lai sāktu darbu

HTML Poga Iespējot/Disabletitle> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>skripts> galva> <body> <button id='myButton'>Noklikšķiniet uz pogas Me> <script>$(document).ready(function(){ // jQuery kods, lai iespējotu/atspējotu pogu // Pievienojiet savu kodu šeit }); skripts> body> html>>> </tag> <p dir='ltr'> <br> </p> <h2> <span>Pogas iespējošanas/atspējošanas piemēri, izmantojot jQuery </span> </h2> <h3> <span>1. Izmantojot .prop() metodi: </span> </h3> <p dir='ltr'> <span>Izmantojot </span> <span>.prop() jQuery </span> <span>Lai iespējotu/atspējotu pogu, ir jāiestata tās rekvizīts “atspējots” uz patiesu vai nepatiesu, nodrošinot efektīvu tās interaktivitātes kontroli, pamatojoties uz lietojumprogrammu prasībām un lietotāja mijiedarbību. </span> </p> <p dir='ltr'> <b> <strong>Piemērs: </strong> </b> <span>Šajā piemērā mēs izmantojam jQuery: pārslēdz pogas “atspējots” rekvizītu klikšķu un dubultklikšķa notikumos, lai nodrošinātu vienmērīgu lietotāja mijiedarbību, izmantojot .prop() metodi. </span> </p>HTML <tag data-text-1=' <html> <head> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>skripts> galva> <body> <h3>Izmantojot .prop() metodih3> <button id='update'>atjaunināšanas poga> <div style='margin-top: 50px'> <button id='change'>noklikšķiniet uz pogas me> div> <script>$('#change').on('click', function () { $('#update').prop( 'disabled', true ); }); $('#change').on( 'dblclick', function () { $('#update').prop( 'disabled', false ); } ); skripts> body> html>>> </tag> <p dir='ltr'> <b> <strong>Izvade: </strong> </b> </p> <img src='//techcodeview.com/img/blogathon-2021/17/how-enable-disable-button-using-jquery.webp' alt='JqueryToggle'> <p>.prop() metode Piemērs Izvade </p> <h3> <span>2. Izmantojot .attr() metodi </span> </h3> <p dir='ltr'> <span>Izmantojot </span> <span>.attr() metode </span> <span>programmā jQuery jūs pārslēdzat elementu atribūtu “atspējots”. Noklikšķinot uz pogas, tiek atspējota cita poga, savukārt, veicot dubultklikšķi, tā tiek iespējota atkārtoti, uzlabojot lietotāja mijiedarbību un funkcionalitāti tīmekļa lapās. </span> </p> <p dir='ltr'> <b> <strong>Piemērs: </strong> </b> <span>Šajā piemērā mēs izmantojam .attr() metodi, lai iespējotu/atspējotu pogu. Noklikšķinot, tiek atspējota cita poga; Veicot dubultklikšķi, tas tiek atkārtoti iespējots, uzlabojot lietotāja mijiedarbību un tīmekļa funkcionalitāti. </span> </p>HTML <tag data-text-1=' <html> <head> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>skripts> galva> <body> <h3>Izmantojot .attr() metodih3> <button id='update'>Atjaunināt Mebutton> <div style='margin-top: 50px;'> <button id='change'>Noklikšķiniet uz pogas Mebutton> div> <script>$('#change').on('click', function () { $('#update').attr('disabled', 'disabled'); }); $('#change').on('dblclick', function () { $('#update').removeAttr('disabled'); }); skripts> body> html>>> </tag> <p dir='ltr'> <b> <strong>Izvade: </strong> </b> </p> <p> <br> </p> <img src='//techcodeview.com/img/blogathon-2021/17/how-enable-disable-button-using-jquery-2.webp' alt='JqueryToggle2'> <p>.attr() metode Piemēra izvade </p> <p> <br> </p> <br> <br> </div> <!-- Article Footer with Prominent Share Buttons --> <div class="px-6 md:px-8 py-8 bg-slate-50 dark:bg-slate-900/50 border-t border-slate-200 dark:border-slate-700/50"> <div class="flex flex-col sm:flex-row items-center justify-between gap-6"> <h4 class="text-base font-bold text-slate-700 dark:text-slate-300 uppercase tracking-wide flex items-center gap-2"> <i class="fa fa-share-alt text-tech-500"> </i> Kopīgot </h4> <div class="flex flex-wrap justify-center gap-3"> <!-- Twitter --> <a href="https://twitter.com/intent/tweet?text=Kā iespējot/atspējot pogu, izmantojot jQuery?&url=https://www.techcodeview.com/lv/how-enable-disable-button-using-jquery" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#1DA1F2]/10 text-[#1DA1F2] hover:bg-[#1DA1F2] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-twitter text-lg"> </i> <span class="hidden sm:inline">Twitter </span> </a> <!-- Facebook --> <a href="https://www.facebook.com/sharer/sharer.php?u=https://www.techcodeview.com/lv/how-enable-disable-button-using-jquery" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#4267B2]/10 text-[#4267B2] hover:bg-[#4267B2] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-facebook text-lg"> </i> <span class="hidden sm:inline">Facebook </span> </a> <!-- LinkedIn --> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://www.techcodeview.com/lv/how-enable-disable-button-using-jquery&title=Kā iespējot/atspējot pogu, izmantojot jQuery?" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#0077b5]/10 text-[#0077b5] hover:bg-[#0077b5] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-linkedin text-lg"> </i> <span class="hidden sm:inline">LinkedIn </span> </a> </div> </div> </div> </article> <!-- Comments Placeholder / Random Articles --> <div class="mt-8 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-xl p-6 md:p-8 shadow-sm"> <h3 class="text-xl font-bold text-slate-900 dark:text-white mb-6 uppercase tracking-wide border-b border-slate-200 dark:border-slate-700 pb-2"> Jums Varētu Patikt </h3> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div class="group"> <a href="/lv/5-fundamental-sagittarius-traits-you-need-know-131326" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3"> <img loading="lazy" src="https://techcodeview.com/img/blog/10/5-fundamental-sagittarius-traits-you-need-know.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="5 galvenās Strēlnieka iezīmes, kas jums jāzina" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> </a> <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors"> <a href="/lv/5-fundamental-sagittarius-traits-you-need-know-131326">5 galvenās Strēlnieka iezīmes, kas jums jāzina </a> </h4> </div> <div class="group"> <a href="/lv/14-best-information-technology-schools-131954" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3"> <img loading="lazy" src="https://techcodeview.com/img/blog/35/14-best-information-technology-schools.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="14 labākās informācijas tehnoloģiju skolas" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> </a> <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors"> <a href="/lv/14-best-information-technology-schools-131954">14 labākās informācijas tehnoloģiju skolas </a> </h4> </div> </div> </div> </div> <!-- SECONDARY COLUMN (SIDEBAR) --> <!-- Aside Column --> <div class="lg:col-span-4 space-y-8"> <!-- Best Articles Widget --> <div class="rounded-xl bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 p-6 shadow-sm"> <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide flex items-center"> <span class="mr-2 h-2 w-2 rounded-full bg-tech-500"> </span> Top Raksti </h2> </div> <!-- Owl Carousel Preserved Container --> <div id="owl-carousel-3" class="owl-carousel owl-theme center-owl-nav"> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/one-one-functions-mathematics"> <img src="https://techcodeview.com/img/maths-class-11/35/one-one-functions-mathematics.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Viens pret vienu funkcijas matemātikā" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/one-one-functions-mathematics" class="hover:text-tech-500 transition-colors line-clamp-3">Viens pret vienu funkcijas matemātikā </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/java-tuple"> <img src="https://techcodeview.com/img/java-tutorial/86/java-tuple.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Java Tuple" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/java-tuple" class="hover:text-tech-500 transition-colors line-clamp-3">Java Tuple </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/what-is-good-asvab-score-1311070"> <img src="https://techcodeview.com/img/blog/55/what-is-good-asvab-score.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kāds ir labs ASVAB rādītājs?" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/what-is-good-asvab-score-1311070" class="hover:text-tech-500 transition-colors line-clamp-3">Kāds ir labs ASVAB rādītājs? </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/calloc-c"> <img src="https://techcodeview.com/img/c-tutorial/21/calloc-c.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Calloc valodā C" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/calloc-c" class="hover:text-tech-500 transition-colors line-clamp-3">Calloc valodā C </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/registers-8085-microprocessor"> <img src="https://techcodeview.com/img/microprocessor/34/registers-8085-microprocessor.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="8085 mikroprocesora reģistri" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/registers-8085-microprocessor" class="hover:text-tech-500 transition-colors line-clamp-3">8085 mikroprocesora reģistri </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/minimum-xor-value-pair"> <img src="https://techcodeview.com/img/dsa/38/minimum-xor-value-pair.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Minimālais XOR vērtību pāris" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/minimum-xor-value-pair" class="hover:text-tech-500 transition-colors line-clamp-3">Minimālais XOR vērtību pāris </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/difference-between-c"> <img src="https://techcodeview.com/img/it-problems-solutions/65/difference-between-c.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Atšķirība starp C un C++" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/difference-between-c" class="hover:text-tech-500 transition-colors line-clamp-3">Atšķirība starp C un C++ </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/act-score-chart-raw-score-conversion-scaled-score-1311224"> <img src="https://techcodeview.com/img/blog/70/act-score-chart-raw-score-conversion-scaled-score.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="ACT rezultātu diagramma: neapstrādāta rezultāta konvertēšana uz mērogotu rezultātu" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/act-score-chart-raw-score-conversion-scaled-score-1311224" class="hover:text-tech-500 transition-colors line-clamp-3">ACT rezultātu diagramma: neapstrādāta rezultāta konvertēšana uz mērogotu rezultātu </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/javascript-string-includes"> <img src="https://techcodeview.com/img/javascript-tutorial/85/javascript-string-includes.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="JavaScript virkne ietver ()" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/javascript-string-includes" class="hover:text-tech-500 transition-colors line-clamp-3">JavaScript virkne ietver () </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lv/helping-verb-definition"> <img src="https://techcodeview.com/img/picked/10/helping-verb-definition.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Palīdzības darbības vārds: definīcija, veidi un piemēri" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lv/helping-verb-definition" class="hover:text-tech-500 transition-colors line-clamp-3">Palīdzības darbības vārds: definīcija, veidi un piemēri </a> </h4> </div> </article> <!-- /ARTICLE --> </div> <!-- Categories --> <div class="mt-8 mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Kategorija </h2> </div> <div class="flex flex-wrap gap-2"> <a href="/lv/blog/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Emuārs </a> <a href="/lv/java-conversion/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Konvertēšana </a> <a href="/lv/maths/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Matemātika </a> <a href="/lv/java-collections/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Kolekcijas </a> <a href="/lv/differences/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Atšķirības </a> <a href="/lv/java-string/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Virkne </a> </div> <!-- Interesting Articles Widget --> <div class="mt-8"> <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Interesanti Raksti </h2> </div> <div id="owl-carousel-4" class="owl-carousel owl-theme"> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/how-install/69/how-install-ffmpeg-windows.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kā instalēt FFmpeg operētājsistēmā Windows?" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/how-install/">Kā Instalēt </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/how-install-ffmpeg-windows">Kā instalēt FFmpeg operētājsistēmā Windows? </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/how-install/29/how-install-update-chrome-ubuntu.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kā instalēt un atjaunināt pārlūku Chrome Ubuntu?" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/how-install/">Kā Instalēt </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/how-install-update-chrome-ubuntu">Kā instalēt un atjaunināt pārlūku Chrome Ubuntu? </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/linux-tutorial/01/whatsapp-ubuntu.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Whatsapp bezmaksas" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/linux-tutorial/">Linux Apmācība </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/whatsapp-ubuntu">Whatsapp bezmaksas </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/linux-command/78/how-create-use-alias-command-linux.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kā izveidot un izmantot aizstājvārda komandu operētājsistēmā Linux" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/linux-command/">Linux-Komanda </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/how-create-use-alias-command-linux">Kā izveidot un izmantot aizstājvārda komandu operētājsistēmā Linux </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/gimp-tutorial/32/gimp-fonts.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="GIMP fonti" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/gimp-tutorial/">Gimp Apmācība </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/gimp-fonts">GIMP fonti </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/blog/30/should-you-go-college.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Vai jums vajadzētu doties uz koledžu? 4 plusi un 3 mīnusi" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lv/blog/">Emuārs </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lv/should-you-go-college-131232">Vai jums vajadzētu doties uz koledžu? 4 plusi un 3 mīnusi </a> </h4> </div> </article> <!-- /ARTICLE --> </div> </div> </div> </div> <!-- /Aside Column --> </div> </div> </div> <footer class="site-footer"> <div class="container"> <span class="footer-links"> Copyright ©2026 Visas Tiesības Aizsargātas | <a href="//www.techcodeview.com/">techcodeview.com </a> | <a href="/disclaimer" rel="nofollow noopener noreferrer" target="_blank">Atruna </a> | <a href="/about-us" rel="nofollow noopener noreferrer" target="_blank">Par Mums </a> | <a href="/privacy-policy" rel="nofollow noopener noreferrer" target="_blank">Privātuma Politika </a> </span> </div> </footer> <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/jquery-1.11.3.min.js"> </script> <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/bootstrap/js/bootstrap.min.js"> </script> <script type="text/javascript" src="https://techcodeview.com/template/assets/js/main.js"> </script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"> </script> <script> !function(){"use strict";let t=document.createElement("button");t.id="toTopBtn",t.innerHTML="↑";let e=` #toTopBtn { position: fixed; bottom: 25px; right: 25px; z-index: 9999; opacity: 0; visibility: hidden; background-color: #0ea5e9; color: white; border: none; border-radius: 8px; width: 50px; height: 50px; font-size: 24px; cursor: pointer; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; } #toTopBtn:hover { background-color: #0284c7; } `,i=document.createElement("style");i.type="text/css",i.innerText=e,document.head.appendChild(i),document.body.appendChild(t),window.addEventListener("scroll",()=>{let e=window.scrollY||document.documentElement.scrollTop;e>300?(t.style.opacity="1",t.style.visibility="visible"):(t.style.opacity="0",t.style.visibility="hidden")}),t.addEventListener("click",()=>{window.scrollTo({top:0,behavior:"smooth"})})}(); </script> </body> </html>