Coffee Break – Portal Style

Posted by Jetlogs @ 9:58 pm
Category: Humor,Video Games

For those who are bored at work, or those who are getting sleepy at home, here is an image that is perfect for you. What a better way to wake up and smell the coffee than to have a coffee break – Portal style!

Wake up and smell the Portal coffee

Now you’re thinking with portals.


jQuery: Disabled and ReadOnly Inputs

Posted by Jetlogs @ 12:22 am
Category: jQuery,Web Development

Ever wonder how to disable another input element through the use of another control? Here is a simple tutorial on how to toggle the disabled attribute of an input element.

For the first demo, we will toggle an input’s disabled status through the use of another control. For this example, we will give our target input an id of target, while our control, in this case a link, we will give it an id of control:

Target text field: <input type="text" id="target" /><br />
<a href="#" id="control" />Disable target</a>

Now to toggle the target‘s disabled status, it is actually quite simple in jQuery. Using the .attr() attribute we can disable the target. Then using the .removeAttr(), we can remove the disabled status. Here is how the javascript code would look like:

$("#control").toggle(
function ()
{
	$('#target').attr("disabled", true);
},
function ()
{
	$('#target').removeAttr("disabled");
});

Here is a demo on how to toggle the disabled status of an input:

Target text field:
Disable target

Although the first method is handy, there are times when we really don’t need a control input. What if we want to enable an input textbox just by clicking on it? Unfortunately Read more »


Wiimote as a Multi-touch Whiteboard

Posted by Jetlogs @ 2:42 pm
Category: Technology,Video Games

Everyday people have been developing new uses for the Wiimote. We’ve seen it already used as a 3rd party controller for the 360, as well as other uses.

But did you know that you can also use a wiimote as a multi-touch whiteboard? Even better, as the video below shows, you can basically transform any laptop into a tablet PC. This is certainly one of the coolest applications for the Wiimote yet.


Read more »


Makai Senki Disgaea 3 Trailer

Posted by Jetlogs @ 2:10 am
Category: Video Games

For those who are fans of strategy RPGs (with extremely long hours of GRINDAN), namely the Disgaea series, you’re in for a treat. A trailer has been made available at the Japanes PSN store revealing the new mechanics and features of the new game. Aside from the insane damage numbers from the trailer which is one of the series’ trademarks, new tower attacks have been also revealed as well as character specials.

What is weird though is that for a PS3 title, the game still uses the low-res sprite-based styled characters from the PS2 versions. Although usually for the Disgaea series, its usually the gameplay, wacky characters, and the story that drives the series.

Here is the Makai Senki Disgaea trailer below:


Super Mario Galaxy DS

Posted by Jetlogs @ 5:26 pm
Category: Video Games

Could this be possibly true? A recent trailer has recently come out about a possible port of the game Super Mario Galaxy into the Nintendo DS. Play the video below to see what the hype is all about:

Before you get very enthusiastic about this video, there is only one catch: Read more »


« Previous PageNext Page »
  • Archives

  • Donations

  • Social Bookmarks

  • Jetlogs.org
    Some Rights Reserved 2007
    Creative Commons License