Skip to main content

Posts

Showing posts from 2008

How to disable/enable an element with jQuery

Sometimes you need to disable or enable some elements in your document and jQuery makes this task easy. All you have to do is to set disabled attribute to "disabled". Example: // To disable $('.someElement').attr('disabled', 'disabled'); In order to enable any disabled element you need to set the disabled attribute to empty string or remove it entirely like in the code below. // To enable

How to disable/enable an element with jQuery

Sometimes you need to disable or enable some elements in your document and jQuery makes this task easy. All you have to do is to set disabled attribute to "disabled". Example: // To disable $('.someElement').attr('disabled', 'disabled'); In order to enable any disabled element you need to set the disabled attribute to empty string or remove it entirely like in the code below. // To enable

Caching in jQuery

What is great about jQuery is its simplicity in selecting elements. We all use it here and there, basically everywhere. This simplicity comes with its drawbacks. jQuery traverses through all elements every time we use selectors. So to boost up your jQuery application you should always cache your selections to some variable (if you find yourself using the same selection more than once). In case

Caching in jQuery

What is great about jQuery is its simplicity in selecting elements. We all use it here and there, basically everywhere. This simplicity comes with its drawbacks. jQuery traverses through all elements every time we use selectors. So to boost up your jQuery application you should always cache your selections to some variable (if you find yourself using the same selection more than once). In case

How to check if checkbox is checked using jQuery

Note: If you are new to jQuery, you might find our short jQuery beginner tutorials useful. While working on my previous project I needed a way to check if the certain checkbox is checked or not. jQuery is a great library but I had a hard time identifying if any particular checkbox was checked. So here is the way to do just that. All you need to do is to check checked attribute of checkbox HTML

How to check if checkbox is checked using jQuery

Note: If you are new to jQuery, you might find our short jQuery beginner tutorials useful. While working on my previous project I needed a way to check if the certain checkbox is checked or not. jQuery is a great library but I had a hard time identifying if any particular checkbox was checked. So here is the way to do just that. All you need to do is to check checked attribute of checkbox HTML

How to test JavaScript code performance

Sometimes after all day long coding your code becomes not so effective and your code (usually interface related) becomes slow. You have done so many changes and don't exactly know what slowing it down. In cases like this (and of course, plenty other cases) you can test your JavaScript code performance.  First of all, you need Firefox browser and Firebug web developers life saver plugin. I can not

How to test JavaScript code performance

Sometimes after all day long coding your code becomes not so effective and your code (usually interface related) becomes slow. You have done so many changes and don't exactly know what slowing it down. In cases like this (and of course, plenty other cases) you can test your JavaScript code performance.  First of all, you need Firefox browser and Firebug web developers life saver plugin. I can not

Everything has characteristics of an Array in JavaScript

The title maybe a little misleading. So don’t confuse Arrays with Object in JavaScript! They have common and non-common methods. You can use jQuery built-in method to check if any given variable is an array ($.isArray(var)). I came across this feature of JavaScript recently and thought I would share it with you. So every object I tried to use had capabilities of array. I could refer to object/

Everything has characteristics of an Array in JavaScript

The title maybe a little misleading. So don’t confuse Arrays with Object in JavaScript! They have common and non-common methods. You can use jQuery built-in method to check if any given variable is an array ($.isArray(var)). I came across this feature of JavaScript recently and thought I would share it with you. So every object I tried to use had capabilities of array. I could refer to object/

What a heck is a (function ($){ ... })(jQuery)

Recently I wrote two articles on how to extend jQuery using its plug in system and a shorthand for that. If you look into them closely they are actually the same thing. The only difference being that the code in first one is wrapped in this anonymous JavaScript function: (function ($) { // code goes here })(jQuery) Little research shows that this allows the use of $ within this function

What a heck is a (function ($){ ... })(jQuery)

Recently I wrote two articles on how to extend jQuery using its plug in system and a shorthand for that. If you look into them closely they are actually the same thing. The only difference being that the code in first one is wrapped in this anonymous JavaScript function: (function ($) { // code goes here })(jQuery) Little research shows that this allows the use of $ within this function

How to add your own custom functions to jQuery

Recently I wrote a template on how to extend jQuery and how to create your own functions. Since then I came across even smaller code snippet on how to add your own custom functions, in other words how to create plugins for jQuery. So without further ado: $.fn.myFunction = function() { return $(this).addClass('changed'); } And now, use it like this: $('.changePlease').myFunction(); And that

How to add your own custom functions to jQuery

Recently I wrote a template on how to extend jQuery and how to create your own functions. Since then I came across even smaller code snippet on how to add your own custom functions, in other words how to create plugins for jQuery. So without further ado: $.fn.myFunction = function() { return $(this).addClass('changed'); } And now, use it like this: $('.changePlease').myFunction(); And that

Let Google host your jQuery library

Google hosts several JavaScript libraries such as Prototype, script.aculo.us, MooTools, Dojo, etc. It also hosts jQuery, as well as jQuery UI. The files are already minimized, gzipped and if your visitors have already visited some site that loaded jQuery from Google Code then it already be on user's machine. So there is nothing to load. UPDATE: You can also use jQuery hosted by Microsoft CDN

Let Google host your jQuery library

Google hosts several JavaScript libraries such as Prototype, script.aculo.us, MooTools, Dojo, etc. It also hosts jQuery, as well as jQuery UI. The files are already minimized, gzipped and if your visitors have already visited some site that loaded jQuery from Google Code then it already be on user's machine. So there is nothing to load. UPDATE: You can also use jQuery hosted by Microsoft CDN

How to bind events to AJAX loaded elements

We all use jQuery's AJAX helpers like $.get(), $.post() and $.load(). We also all use jQuery's event bindings. When you use them both, problems such as your event bindings like click() are not bided to your new AJAX loaded elements. To solve this problem you need to bind events to your newly loaded elements. NOTE: Make sure you don't bind the same event to the elements with this event

How to bind events to AJAX loaded elements

We all use jQuery's AJAX helpers like $.get(), $.post() and $.load(). We also all use jQuery's event bindings. When you use them both, problems such as your event bindings like click() are not bided to your new AJAX loaded elements. To solve this problem you need to bind events to your newly loaded elements. NOTE: Make sure you don't bind the same event to the elements with this event

How many elements were selected by jQuery

Recently I needed to find out how many elements were selected by jQuery. jQuery selector returns an array of elements jQuery object that has .length attribute. So the easiest way is to get the length of returned jQuery object. The size of that object will be equal to the number of selected elements. $('.someClass').length; // Assume you have 4 .class elements $('.class').length; // would return

How many elements were selected by jQuery

Recently I needed to find out how many elements were selected by jQuery. jQuery selector returns an array of elements jQuery object that has .length attribute. So the easiest way is to get the length of returned jQuery object. The size of that object will be equal to the number of selected elements. $('.someClass').length; // Assume you have 4 .class elements $('.class').length; // would return

Access to restricted URI denied" code: "1012

I was working on the interface for our catalogue/directory structure. We use great JavaScript library jQuery as our JS framework. While working on page AJAX requests to get child categories I came up to this error message / problem: Access to restricted URI denied" code: "1012 xhr.open(type, s.url, s.async); (This error was produced in Firebug, plug-in for Firefox) The error occurs when my

Access to restricted URI denied" code: "1012

I was working on the interface for our catalogue/directory structure. We use great JavaScript library jQuery as our JS framework. While working on page AJAX requests to get child categories I came up to this error message / problem: Access to restricted URI denied" code: "1012 xhr.open(type, s.url, s.async); (This error was produced in Firebug, plug-in for Firefox) The error occurs when my

Wonton Wrappers

Wonton Wrappers is the basic ingredients of many Wonton Recipe from Chinese Food . Wonton wrappers can be bought at the Asian Groceries Store or Supermarkets . But making your own Wonton wrappers at home isn't impossible and not too complicated also quick prepare . Here's a Wonton Recipe to help you serving your own making Wonton Recipes . Wonton Wrappers Recipe ( Makes about 3 dozen squares) Ingredients : 1 large egg white About 1/3 C water 1 C all-purpose flour 1/4 teaspoonful salt Cooking Direction : Combine the flour and salt In the bowl of a standing mixer (or use a hand mixer) Add the egg white and mix with the paddle attachment over medium speed, Slowly adding water until the dough forms a ball. (Use all the water if needed) Continue beating the dough with the paddle for several minutes, or remove from the mixer to knead by hand. ( Adjust the flour and/or water content by increments as necessary till it form a smooth elastic dough that isn’t sticky ). Cut the dou

Three amazing bathroom soap baskets

Bathroom accessories like soap baskets can prove to be very handy at times indeed! Some people prefer small soap baskets while some prefer bigger and stylish baskets. Well here are the three latest and hottest baskets than can give a new look to your bathroom premises. Chrome Small Wire Soap Basket Chrome small wire soap basket fulfils both aspects that of practicality with functionality. It belongs to the stylish range of baskets and suites the luxurious selection of taps, mixers and shower parts. Chrome Small Corner Basket Then there is this outstanding chrome small corner basket that too fulfils both aspects that of practicality with functionality. Complements most of all the bathroom accessories. Soap Basket This one is a slighter traditional and simpler compared to the first two. Ensures practicality and functionality complementing most other bathroom accessories.

Helix Bathroom Showers are all about accuracy

Yet another outstanding bathroom shower named Helix Square Fixed Shower Head and Arm that represents an extra ordinary and contemporary design with a great touch. The bathroom shower is constructed from a solid brass and chrome finished shower arm with head wall mounted and artistic square shapes. Ensures an optimum performance for water supply between 0.1 to 4 bar pressures. The Helix bathroom showers is all about accuracy along with lots of fun. It also offers a chic minimalist look that feels great in any setting. Choose from a range of mixers, showers and shower heads for contemporary and artistic look to your bathroom.

Bathroom showers to sparkle your Christmas

Your bathroom should be right on the priority list as Christmas is on the way! Bathroom showers can ensure a sparkling Christmas for you. Triton T100E Thermostatic 8.5kW Care Plus Shower is an excellent bathroom shower kit with an added advantage of an audible alarm which sounds on activation of any button, if a low pressure fault occurs or if the outlet showering temperature exceeds 41 degree's C. The shower also makes sure that the temperature does not increase by more than 1.5 degree's C of the setting.

Beaumont twin concealed Slider Rail Kit

Bathroom Accessories form a very significant part indeed! We have seen numerous bathroom accessories till date, time to explore a few more! Beaumont twin concealed Slider Rail Kit is a thermostatically controlled shower with separate controls for the flow & temperature. It is an ideal one for all types of plumbing as installation this shower valve has the added safety benefit of a built in anti scald device should the cold water supply fail. The shower kit also consists of a traditional slider rail with a period style handshower.

Fantabulous Bathroom Suite

One of the most exciting collections of Bathroom suites is here. Yes it’s a fantabulous Impact Bathroom 4 Piece Suite (2 Tap holes). The all new Impact suite has been designed with the smaller bathroom or en suite in consideration. Its good looking and practical design comprising of a short projection wc pan and push button cistern offered with a choice of basin sizes. Bathroom Suite also includes the following: Impact SP CC pan pack - 271052 Impact 550 2TH basin - 231522 Universal pedestal - 2401

Bizarre Bathroom accessories

We have witnessed quite a handful of elegant and stylish bathroom accessories but how about seeing some of the world’s most bizarre bathroom accessories? The first one is a smart and stylish white and black bathroom scale that makes use of a dial for the reading. It comes with raised feet area measuring 29 x 28 x 4cm. Then there are accessories like Chrome Soap and Sponge Basket combining practicality and functionality brilliantly. Complements almost all the varities of taps, mixers and shower parts.

Effective Bathroom Taps

The Dualflow Mono Sink Mixer looks stunning serving as the greatest bathroom tap for any bathroom type. The best part of course is that the Solo lever dual mono sink mixer with chrome finish does not include sink waste and with three inch lever handles use ceramic discs. Provides a new look to the ambience of your bathroom! Bathroom Taps like electronic tap come in handy besides looking good. Comes with chrome finish requiring 4AA batteries. Fittings are suitable for low pressure. Bathroom accessories like these really add a great bit to your bathrooms.

Bathroom Mirrors at its best

When it comes to bathroom accessories , one aspect you cannot miss is the all important bathroom mirrors as they enhance the overall look of our bathrooms. You should ensure that they coordinate brilliantly with the other bathroom accessories as well! Here are the two bathroom mirrors which certainly make your bathroom look spacious and wonderful. Freestanding Mirror Freestanding Mirror is an excellent mirror. It is simple and at the same time very powerful mirror. Provides a unique and spacious look to your bathroom. Elan Mirror with Light - LQ308 Elan Mirror with Light LQ308 is one of the greatest of all bathroom mirrors as it complements most other modern bathroom suites. It can be fitted wherever the fitting may be splashed, anywhere within 0.6 metres of a basin or similar water source. Very easy to install as well.

Greenstar Highflow 440 Boiler for the medium to large sized bathroom

If you want to buy bathroom gas boilers , you cannot dare make a mistake of overlooking the world’s best Worcester based manufacturer viz Greenstar. The Greenstar Highflow 440 boiler is simply a class product. It is large floor standing condensing combination boiler belonging to the market leading energy-saving Worcester combi series. Points to watch out for this boiler Capable of delivering up to 20 litres of domestic hot water per minute making it an ideal one for use in medium to large sized family homes, incorporating up to two bathrooms. Very Eco-friendly boiler as the boiler recycling exhaust gases to extract and re-use latent heat which in turn helps in reducing CO2 in the atmosphere.

Two fantabulous bathroom mirrors

Bathroom mirrors have always fascinated right from my childhood. Two of such fantabulous bathroom mirrors being the Omega Twist Round Bathroom Mirror and the Small Free Standing Adjustable Mirror . Small Free Standing Adjustable Mirror Small Free Standing Adjustable Mirror is a high quality mirror complementing most modern bathroom suites. It comes along with the following: Table Mirror Adjustable Rectangular Chrome Frame and Base Dimensions. Mirror. 18 x 26cm Twist Round Bathroom Mirror On the other hand, Omega Twist Round Bathroom Mirror too has got a good potential as this high quality table mirror has been manufactured to a very high quality and complements most modern bathroom suites. Chrome Frame Mirror with Stand Twirl Stem x2 Magnification Reverse Dimensions. Box. 18.5 x 18.5 x 5cm

Amazing Bathroom Basins

We have yet not discussed basins that occupy a very significant part of any damn bathroom. Unispace 1 Tap Hole Cloakroom Basin is one such amazing bathroom basin that will make your bathroom look wonderful. As we all are very well conversant of today’s modern trend basins coming in a variety of types and sizes with a whole lot of different and stylish designs. Unispace 1 Tap Hole Cloakroom Basin is simple yet contemporary designed basin perfectly complementing most of the bathrooms. The figure above will help you get an idea on its technical dimensions in a simple manner.

Monica Bathroom 4 Piece Suite

Your bathroom suite must be one which complements with all the other accessories as well. Well one such marvellous bathroom suite is the new Monica Bathroom 4 Piece Suite. This bathroom suite belongs to the excellent categorty of bathroom suites as it is damn practical and ofcourse beautiful indeed! The contemporary styling of the Monica suite delivers a clean crisp look for today’s lifestyle. This is what it includes Monica SP CC pan pack - 271066 Monica 550 1TH basin - 231541 Unisquare Pedestal – 246230

Triton Shower Tower - Unichrome Ullswater

In today’s modern life and hectic schedule where you don’t have enough time to take full bath, so you have the solution Triton Shower Tower- Unichrome Ullswater from wide range of bathroom shower series. With excellent shower experience, Triton Shower Tower provides ultimate design to your modern bathroom. The thermostatically controlled shower tower provides separate control for flow and temperature. The diverter control gives a wide range of option. This shower tower comes with main shower head, shower hand sets and body jets. So Choice is yours either use main shower head and body jets or shower handset and body jets. In total with choice of five different showering sensations, that means still you have ultimate shower experience without spending too much time. This system is suitable to work with high pressure system only, needs minimum operating pressure of 2 bar. With highly advanced and ultimate features it includes safety features like – automatic shut down if cold water

Thermostatic Shower Panel from “Home of Ultra” – an elegant Design

From my point of view taking shower means getting relaxed. In today’s fast and tension full life you always want some time to get relaxed, thermostatically control bathroom shower panel provides you the best experience of showering with jets. Science says suitable warm water with proper force can relax your mind and body and can give you pleasure. This advanced and modern structured Thermostatic shower panel has square head shower top, additional shower handle and body jets with thermostatically control. For additional beauty it comes with a glass shop dish which gives magnificent look with excellent performance. Thermostatic Shower Panel, most efficient bathroom shower range provides ultimate shower experience with extra ordinary look which fulfill all necessity in your modern bathroom. This minimalist kind design chrome finished separate controls for temperature and flow with body jets get you relaxed easily and efficiently.

Glow Flow LED Faucet Tap Light – Small Safety Fountain in Your Bathroom

How do you feel if you see a colorful fountain kind gadget in your bathroom? Yes I know its bit surprised but in today’s gadget world anything can be possible. Washing up has never felt so glamorous. This Glow Flow LED Faucet Tap Light works in your bathroom to provide you colorful environment around you with some good safety features. This fully automatic gadget has a LED Faucet Glow with temperature sensor. The working mechanism for this gadget is simple vary simple, with its universal adapter can be fixed with most of common types of taps. Whenever the water is turned on an internal switch activates an LED light source. Turn off the water and the light goes off too… this is simple light mechanism. But as added safety feature, this LED Faucet Tap Light has temperature sensors. When you turn on water, instantly the temperature sensors activate and lit up in a cool electric blue if water is cold and if it is hot then it changes to warm red warning light. Finished with chrome an

Set HTML tag’s / element’s attribute

In our previous post about “How to get an element’s / tag’s attribute” I described how to get element’s attribute. In this post I would like to show you how to set any HTML tag’s or element’s attributes. Don’t forget, jQuery can set any attributes like id, class, style, name, title, etc. Setting element’s attribute example: // This code add title to all page links $("a").attr("title", "This is

Set HTML tag’s / element’s attribute

In our previous post about “How to get an element’s / tag’s attribute” I described how to get element’s attribute. In this post I would like to show you how to set any HTML tag’s or element’s attributes. Don’t forget, jQuery can set any attributes like id, class, style, name, title, etc. Setting element’s attribute example: // This code add title to all page links $("a").attr("title", "This is

Worcester-Regular-Greenstar Camray External 25-32

Yet another Greenstar oil fired boiler that is really impressive and suitable for whom indoors boiler would be inconvenient. Yes it’s the Greenstar Camray External 25-32 which belongs to the range of energy-saving condensing oil-fired boilers from Worcester and Camry external series. Greenstar Camray External 25-32 combines design for reliability in an excellent manner. Experts claim that around 93% of the oil consumed by a Greenstar Camray External condensing regular boiler is converted into heat for the heating and/or hot water system which in turn results in reduction of hot water bills by 5-10%. Also like every other oil fired boiler, Camray External 25-32 is an eco friendly one. What’s more the latent heat of the gaseous is extracted and reused as a secondary heating device meaning that a very less of energy is wasted or lost and boiler delivers less carbon dioxide in the atmosphere.

Worcester Combi Greenstar Heatslave External 12-18

When it comes to boilers, you always have to consider Worcester based Greenstar, isn’t it? Talking about oil fired boilers ; Worcester Greenstar Heatslave External 12/18 is truly an amazing one! It is infact a part of the floor standing Combi Oil Boiler and belongs to the energy-saving condensing oil-fired boilers from Worcester . The design is brilliant that ensures energy-efficient heating and hot water with almost no impact on the environment. Greenstar Heatslave External 12/18 has the capability of reducing heating and hot water bills by between 5-10%. Worcester Greenstar External Oil Boiler range gives you the great option of installing your oil-fired boiler outside your house. It is eco friendly and highly recommended for the property types where it is not feasible or suitable to have a boiler located within the property.

Worcester - Combi - Greenstar 30Si

Once again a gas boiler and this time around it’s the new Greenstar 30Si Boiler that belongs to the group of market leading range of energy saving condensing gas fired boiler from Worcester combi boiler series. The highly advanced technology helps in reduction of your heating and hot-water bills between 15-20% as also the running cost gets reduced to 30% than an older boiler. After all it’s a Greenstar 30Si gas boiler. Greenstar 30Si condensing boilers also offer energy-saving performance by recycling exhaust gases to extract and re-use latent heat making it eco friendly. Great Features One man lift weight is only 27Kg SEDBUK (Seasonal Efficiency of Domestic Boilers in the UK ) A-rated - environmentally friendly 30kW domestic hot water (DHW) output (25kW output also available for this boiler) compact hydraulic - efficient and reliable Low NOx and CO2 emissions - environmentally friendly

Greenstar 24i Junior is a great boiler

The Greenstar 24i junior is one of the most amazing gas boilers belonging to the Worcester-Bosch combi boilers series. This outstanding boiler contains a heat cell made from cast aluminum and silicon. This is done given the fact that big surface areas can combat more heat extracted from fuel gases providing more efficiency. This mechanism helps in reduction of heating and hot water bills by around 20 percent. Also they are up to 30% cheaper to run than older boiler. Greenstar 24i junior is available in both natural gas and LPG models. There is no doubt that the Greenstar 24i junior boilers are very efficient and also cost effective. They can consume up to 90% of the energy and provides best performance. Besides this they are light weight and pretty easy to carry by one person alone. Being eco friendly, it releases less carbon dioxide in the atmosphere. Key Features 24kW domestic hot water (DHW) output (28kW output also available for this boiler-suits to small propert

Worcester-Regular-Greenstar Utility 50-70

Turning back to Worcester Greenstar Utility 50-70 range of energy saving oil-fired boilers, Greenstar Utility 50-70 is very impressive. Greenstar Utility 50-70 is a part of Worcester Greenstar Utility Regular boiler series manufactured with an intention to provide high quality and high efficient heating and hot water supply for large domestic property or house or even commercial buildings. The highly efficient re-use of energy results in reduction on wasted fuel as also the reduction in energy bills by 10% approximately. At least 93% of the oil consumed by a Greenstar Utility condensing regular boiler is converted into heat for the heating and/or hot water system. Greenstar Utility 50-70 is ecofriendly as well as it offers this energy-saving performance by recycling exhaust gases to extract and re-use latent heat. This highly efficient use of energy which also significantly reduces carbon dioxide in the atmosphere.

Illuminated Bathroom Mirrors make your bathroom look bigger

Enough of Worcester based Greenstar amazing gas and oil fired boilers. Time now to explore some of the best bathroom mirrors that can add more to your bathroom. How about fantastic square illuminated Bathroom mirror? Well it is made up of very high quality material and complements almost all bathroom suites. Dimensions Height 60cm Width 60cm There are also rectangular illuminated Bathroom mirrors that are meant for people who detest the square shaped mirrors. These mirrors too are made up of very high quality material and complement almost all bathroom suites. Dimensions Height 50cm Width 39cm

Worcester Regular Greenstar Utility 32-50 is an excellent oil-fired boiler

Continuing with the series of gas boilers , this time around it’s the new Greenstar Utility 32-50 which is a part of leading market range belonging to energy-saving condensing oil-fired boilers from Worcester . This oil-fired comes from the Greenstar Utility Regular boiler series and is designed with high quality material. It provides highly efficient heating and hot water supply. Like every other Greenstar boiler this too helps to reduce on wasted fuel which in turn results in cutting your energy bills by between 5 and 10% and leaves pretty less effect on environment. The amazing fact is that at least 93% of the oil consumed by a Greenstar Utility condensing regular boiler is converted into heat for the heating and/or hot water system. Greenstar Utility condensing boilers also provides the energy-saving performance by recycling exhaust gases to extract and re-use latent heat - a highly efficient use of energy which also effectively reduces carbon dioxide in the atmosphere. Gr

Greenstar 24i System boiler is a very useful one

Speaking about yet another Greenstar gas boilers , this time around its the Greenstar i System series which is a vital part of a market-leading range of energy-saving condensing gas-fired boilers from Worcester. This Greenstar 24i System boilers help you cut hot water and heating bills by around 20% and also are cheaper by 30% than an older boiler. And the plus point being that it is environ-friendly and so saves up to 97% of the gas consumed as it is converted into heat. Here are its key features SEDBUK(Seasonal Efficiency of Domestic Boilers in the UK ) A-rated - environmentally friendly Low NOx and CO2 emissions - environmentally friendly 24kW output (12kW output also available for this boiler) Compatible with Greenskies solar water heating Wall mounting frame with pipes behind - no exposed pipework Proven cast aluminium heat exchanger

Two Worcester Greenstar Compaq Boilers

Once again speaking about the Compaq Greenstar gas boilers , Greenstar 12i and Greenstar 12Ri are two excellent boilers that comes into our mind! The Worcester based Greenstar 12Ri boiler belongs to a market-leading range of energy-saving condensing gas-fired boilers from Regular boilers series. The speciality is that it is very easy to install and ideal for small property type. It can actually fit in the kitchen cupboard as well. Like every other Greenstar gas boilers, these boilers two help one decrease heating and hot water bills by between 15-20% and also they are cheaper upto 30% cheaper to run than an older boiler. They are energy saving along with eco friendly. Similarly Greenstar 12i System is a great gas boiler as it is easy to install and operate. Up to 97% of the gas consumed by a new Greenstar 24i condensing System Boiler is converted into heat for the heating of the system. Both these boilers are SEDBUK A-rated - environmentally friendly boilers. For ease of in

Greenstar Best Oil fired Boilers

Moving on with Oil fired boilers , once again Worcester based Greenstar has many excellent heatslave boilers up its sleeve. The two amazing Greenstar heatslave 18/25 and heatslave 25/32 respectively have been exceptional boilers. Greenstar heatslave 18/25 belongs to the market-leading range of energy-saving condensing oil-fired boilers from Worcester combi series. This boiler very smartly converts the oil consumed into the heat which is then utilized for heating or hot water system. The result is the cutting down of hot water bills by around 10%. Recommended for a small to medium sized 1 bathroom apartment, house or bungalow. Also like every other Greenstar boiler, this too is eco friendly. Technical Features SEDBUK A Rated – environmentally friendly. Pre-heated thermal store – instantly heated hot water. Optional fascia mounted programmer – reduced wiring 18kW, 25kW and 32kW DHW (domestic hot water) and CH (central heating) On the other hands, the Worcester Gre

Two Fantastic Gas Boilers from Greenstar

Greenstar, the Worcester giant is a leader in gas boilers undoubtedly and a pioneer in market when it comes to energy saving condensing gas-fired boilers. In fact Greenstar’s gas boilers are all about efficiency and performance. The Greenstar 27CDi is one such master boiler belonging to the Combi Boiler series. Once again like every other Greenstar Combi boilers this one too helps in reducing your heating and hot water bills by between 15-20% while reduction in maintanance costs varies up to 25% to 30% than an older boiler. It provides you with an amazingly 27kW domestic hot water output. This is not enough as Greenstar 27CDi is very environment friendly as the efficient use of energy decreases carbon dioxide in the atmosphere and provides maximum utilization of your energy. Talking about the great Greenstar 37CDi, it too nicely blends with other domestic appliances. This too effectively helps you save on your hot water bills and maintainance costs. Features such as Hot water and

Classical Hadrian Era HL Bathroom Suite

Classical bathroom suites with magnificent Midas touch look soothing to the eyes in any bathroom. One such classical style bathroom suite is Hadrian Era HL Bathroom Suite . It has been manufactured keeping in mind the high standards that consumers look for in their suites today. Hadrian is an ideal one for providing a period look in any home. The Hadrian HL suite also features a high level cistern with pull chain flush. With a choice of basin options, it is particularly suited to en suite and cloakroom applications. Bathroom Suite includes the following Hadrian LL pan - 211050 Hadrian HL cistern - 250027 HL Chrome pipe kit - ERACH Hadrian HL fittings pack - H/LFIT Hadrian 560 square 2TH basin - 2396 Hadrian pedestal - 2426

Greenstar CDi30 Gas Boiler is an environ-friendly one

We have seen all kinds of bathroom accessories such as bathroom showers, towel rails, bathroom suites and basically many more, its like name it and have it. But we forgot the boilers which too are very important in any bathroom. Let’s take a look at one such outstanding energy saving boiler named Greenstar CDi30. Greenstar CDi30 is one of the outstanding energy saving boiler condensing gas-fired boilers from the Greenstar CDi boiler series, part of Worcester gas-fired boilers. The major benefits ofcourse is that these special boilers help one reduce heating and hot water bills in between 15% to 20% and also save up to 30% cheaper to run than any other older boiler. What’s more Greenstar CDi30 is also environmental friendly as it makes use of high technical and high degree analyzed method of recycling exhaust gases to decompress and re-use latent heat. L ow CO 2 and NOx emissions are what this boiler is all about.