Telnet has some issues but I feel some disparage telnet just for the sole reason that it's old.
Fact is telnet, as a protocol, is easy to work with. It's straightforward and simple to debug by just printing what the heck you are receiveing and sending in plain text. And over the years the MU* community has made a series of extensions to expand its capabilities to act as a game protocol, like MCC for compression (less important than it used to be), MXP for client-handled text markup, GMCP/MSDP for server/client out-of-band instructions etc. Flip on SSL and you can even give it some notion of security.
From the server's perspective the main problem is that many of these custom MU* telnet-protocols are only vaguely standardized, and even when there is good documentation (not at all a guarantee), third-party clients are often ignoring that documentation or present lackluster, partial support. And who do users blame if their client suddenly misbehaves with a server because their client is not following specs but the server do? They sure don't blame their (often ancient) client.
The other main drawback of telnet is of course, as mentioned already in this thread, the need for a custom client. This has a generic interface not customized for that a given game. Clients like Mudlet have worked hard to allow games to easily offer game-custom skins and settings though - games like GodWars2 have made quite impressive and easy features available this way - people playing GW2 has a Mudlet client that looks nothing like the vanilla one. Still, there's no denying that third-party clients still present a hurdle for complete newbies.
Web clients have the advantage of being almost completely under your control as a dev (I say almost since the browser affects things too). No need to worry about weird standards or client compliance - when you control both ends of the wire you can make your client work exactly as intended. That players can easily just press a website button and be in-game is a nice bonus. The drawback is that you are then playing catch-up with the features of third-party clients that have been in development for 20+ years in some cases.
There are lots of possibilties though. For example, here's a GIF example of user BattleJenkin's experimental (not yet official) web client for their Evennia game "World of Cool Battles":

This is replacing Evennia's default webclient GUI with a JS GUI library of their preference (it's using HTML5's canvas element). It offloads all location descriptions in its own window and uses light graphics and special effects to enhance gameplay. It's possible one could achieve similar results with Mudlet (maybe in MUSHclient too?) using GMCP/MSDP and a custom skin, but it's a nice indication of the possibilities.
Telnet still has a place I think, for the existing crowd/power users using and expecting the features of their particular third-party client. I believe aiming to offer web clients with features on par or better is the way forward though.
.
Griatch