• Home
  • ANGULAR
  • JAVASCRIPT
  • ABOUT ME

Alex Arriaga

  • Home
  • ANGULAR
  • JAVASCRIPT
  • ABOUT ME
© 2025 Alex Arriaga

JavaScript

JavaScript jQuery Web Development

Getting the file names of a multiple input form field with jQuery

Posted on August 3, 2015by alex-arriaga

An easy way to get the file names of an input form field: (function($) { var files = $(‘#myInputFile’)[0].files, items = []; for (var i = 0; i < files.length; i++) { items.push(files[i].name); } // Getting file names in JSON array format JSON.stringify(items); })(jQuery);  

JavaScript Web Development

Remove special characters using a Regex in JavaScript

Posted on December 10, 2014by alex-arriaga

Imagine you have some strings and as a requirement of one your clients, you need to clean the strings by deleting all the special characters, so here are two regular expressions that could help you to start your cleaning, of course, the second one is more personalizable, but, be my guest and choose the one…

AngularJS HTML5 Node.js Web Scraping

Explore ACM a beautiful project created just for fun!

Posted on September 12, 2014by alex-arriaga

For all of you who enjoy make experiments with the web, this is an idea that two of my friends (an experiment made by @superjaca10 and @dantaex for the Astonising Summer at Edis) developed few days ago: http://www.exploreacm.tk/ It is about collecting references from the ACM Digital Library, it uses techniques of web scraping (a computer…

Dojo Enterprise Development IBM Web Content Manager IBM WebSphere JavaScript Web Development

How to know the Dojo version loaded in a web portal

Posted on September 12, 2014by alex-arriaga

When you work with Dojo in a portal that is already in production mode, one of the first question you want to answer yourself is: what is the version of Dojo do I have available for using? Well, to answer that, just open you web browser console and run this small JavaScript code: var v =…

Posts navigation

1 2