double_arrow
Article Archive

double_arrow Ask an Expert Attorney

reCAPTCHA

What Our Customers Say...

5.0
Based on 102 reviews
powered by Google
Andy Matthews profile picture
Andy Matthews
10:42 13 Mar 26
What can I say about Albright IP? They state 'Excellence in Intellectual Property' and that is exactly the service I received. I was really worried about the patent application for my new product and the team at Albright swept in and saved the day in a swift and professional manner, making me feel completely at ease and in safe hands from the outset. I cannot recommend Alright IP enough they are simply a fantastic company!
Martin Hastings profile picture
Martin Hastings
17:07 13 Nov 25
Excellent, professional service
26dragon76 profile picture
26dragon76
15:31 23 Jul 25
A truly exceptional experience – thank you Albright IP!

I want to personally thank Charlie Heal , Emily Fox, Cara McAtee, and the entire team at Albright IP for their hard work, dedication, and professionalism in helping me submit my first ever patent: the Baffer Ball fire suppression system.

From the very first meeting, Charlie and Emily made everything feel clear, comfortable, and respectful. They listened carefully to my ideas, even though I’m not from a technical or legal background – I’m a painter and decorator by trade. But they believed in my vision and treated it with such care and seriousness that I felt truly supported as an inventor.

Over several months, we worked closely by email and phone. Charlie and the team guided me step by step to build one of the strongest, clearest, and most professional patent drafts I could have hoped for. The claims they wrote are powerful, and the language used shows how deeply they understood my invention. They didn’t just file a document – they helped shape a legacy.

Charlie, even though he is young, is incredibly professional and experienced. I am amazed at how he managed such a complex project with kindness, patience, and precision. Emily and Cara were also fantastic throughout.

This was not just paperwork – this was my dream since childhood. And Albright IP helped me make that dream real.

💬 I look forward to working with them again on future patents. The Baffer Ball is just the beginning – and I am proud that Albright IP was there from Day 1.

Thank you so much again — from the bottom of my heart.
— Morteza
See All Reviews
jQuery(document).ready( function($) { var monthNames = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; var numberSuffix = function(d) { if(d>3 && d<21) return 'th'; switch (d % 10) { case 1: return "st"; case 2: return "nd"; case 3: return "rd"; default: return "th"; } }; var pctNumberToWoNumber = function(pctNumber) { var country = pctNumber.substring(4,6); var year = pctNumber.substring(6, 10); var number = pctNumber.substring(11, 17); if (number.startsWith('0')) number = number.slice(1, number.length); var woNumber = 'WO'+year+country.toUpperCase()+number; return woNumber; }; var convertCurrency = function(costInEuros, currency) { var deferred = new $.Deferred(); if(currency === 'EUR') deferred.resolve(costInEuros); $.get(ajax_object.ajax_url + '?action=pct_calc_convert_currency_ajax¤cy='+currency+'&ammount=' + costInEuros) .done(function(json) { var data = JSON.parse(json) deferred.resolve(data.convertedAmount); }) .fail(function(response) { console.log('Currency convertion error. Fail status : ' + response.status); console.log(response); deferred.reject(response); }); return deferred; }; var woNumberToPctNumber = function(woNumber) { var country = woNumber.substring(6,8); var year = woNumber.substring(2, 6); var number = woNumber.substring(8, woNumber.length); while(number.length < 5) number = '0' + number; var pctNumber = 'PCT/'+country.toUpperCase()+year+'/'+number; return pctNumber; }; var formatCurrency = function(n, c, d, t) { c = isNaN(c = Math.abs(c)) ? 2 : c, d = d == undefined ? "." : d, t = t == undefined ? "," : t, s = n < 0 ? "-" : "", i = String(parseInt(n = Math.abs(Number(n) || 0).toFixed(c))), j = (j = i.length) > 3 ? j % 3 : 0; return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(d{3})(?=d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : ""); }; $.widget("custom.pctTextInput", { options: { maxLength: 100, spellCheck: true, label: '', errorText: '', value: '', placeholder: '', name: '', type: 'text', validator: function(text) { return true; }, transform: function(text) { return text; } }, _validateInput : function() { var widget = this; var element = widget.element; var options = widget.options; var text = widget._input.val(); widget._isValid = options.validator(text); if(widget._isValid) { widget._input.removeClass('invalid'); widget._errorText.fadeTo(100, 0); } else { widget._input.addClass('invalid'); widget._errorText.fadeTo(100, 1); } element.attr('valid', widget._isValid); element.attr('value', widget._isValid ? options.transform(text) : ''); }, _updateOptions: function() { var widget = this; var options = widget.options; widget._input.val(options.value); }, _create: function() { var widget = this; var element = widget.element; var options = widget.options; widget._input = $(''); widget._label = $('