No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
28 Posted Topics
Re: I don't think we should care much about IE 6 and below if the web site we built it not meant for a big market share, say a blog or online portfolio. I think it would be a waste of potential and time to try to fix problems like IE's … | |
Hello, I'm currently designing a simple movie database. In a table I have a column called status. And for that there will only be a few possibilities like "pending", "watched" etc... What would be a good way to design it such that I have some kind of constant? Should I … | |
Hi guys, I'm learning PHP and MySQL now, so I did a simple forum database in MySQL Workbench. I hope you guys can check it out and point out anything I should that note of. Also I would appreciate it if you could share your learning resources (like blogs/tutorials, not … | |
What would be the guideline for using a component or module? Is the component where I use to bloat my model with? BTW, I'm using Yii Framework. Thanks. | |
I want to build a large scale web application but I'm torn between the three. The main points I'm looking for are productivity, speed, hosting, community, scalability, learning resources and technology (AJAX, database, threading, MVC etc). Here are my impressions of them: [B]PHP:[/B] de facto for web development, big community, … | |
Hi, I'm a beginner in the J2EE field. I've already learnt the basics of Java programming and now I'm moving on to web development. What I want to know is if I could skip learning JSP/JSF, servlets, EJB, JPA etc if I learn Wicket, Spring and Hibernate. I'm still not … | |
Please bear with me, I'm quite new at this Java stuff. I'm quite confused as to what Java technology does what and which is a better choice. I've done quite a lot of research and found Wicket, Seam, Spring, JSF, Struts and Hibernate to be especially popular. But I'm very … | |
Hi there, I'm a Java newbie, but have experience in JavaScript programming for over half a year. I would like to ask if there and any web site where people share their Java source code so that I can read and learn how they program. Blogs where they share tutorials … | |
Is it possible to read an audio file, like an mp3 song, and see the details of the sound like decibels, pitch and bass during different intervals of the song? Also, is it possible to do this with Silverlight (C#)? Thanks. | |
I'll make it short. First is how do I change the text colour of a [B]disabled[/B] button. I've tried HTML and setForeground but doesn't work. Second, when I want to click a button, I can't move my cursor or the event will not fire. I used addMouseListener because I also … | |
What's the the difference if I were to use "this.x=y" instead of just "x=y"? All I know is that this refers to the object created from the class. Also what's the difference if I were to use "this.method()" as compared to creating a new class like so, "Class cs = … | |
What I want to know is the difference between the development, scalability and cost of ASP.NET(C#) and Java. I know that in most cases Java is slower than C#. But how much slower? I also know that to run .NET we need Windows(excluding Mono). Will the cost of the license … | |
Re: Try attaching this function to your link. Replace url with your url and name with whatever name you want. [CODE] function(e){ var leftBtn; if(!e){ var e = window.event; leftBtn = 1; //IE detects left click differently }else{ leftBtn = 0; } if(e.button===2){ //Right click window.open(url, name) }else if(e.button===leftBtn){ //Left click … | |
Hi, I need some help detecting the escape character ''. It doesn't show up when it's in a string. I'm trying to convert '/' into '&&' and '\/' into '||'. Help is much appreciated. Thanks. | |
Re: Maybe you could try something like this. var frame = document.getElementById(Id of frame).contentDocument.body; if(frame.offsetWidth > 800){ frame.style.width = '800px'; } | |
How do I convert the [I]this[/I] object to an array. Please help me, many thanks. | |
How do I start my literal object as a function like you do when you use the new Object method. e.g. var fn = function(){ ...code...} var func = new fn(); I'm trying to achieve this using the literal object method like: var fn ={ key: '' } | |
I just wrote a code for a hover animation for a button based of Dragon Interactive tutorial. The problem is that when I first load the page and hover over the button it doesn't animate. But consecutive hovers animate fine. The first hover works just like a CSS :hover. I … | |
[CODE=javascript]clock(); function clock(){ var d=new Date(); var hour = d.getHours(); var minute = d.getMinutes(); $('#hr1').css('text-indent', '-'+hour.charAt(hour.length-2)*50+'px'); $('#hr2').css('text-indent', '-'+hour.charAt(hour.length-1)*50+'px'); $('#min1').css('text-indent', '-'+minute.charAt(minute.length-2)*50+'px'); $('#min2').css('text-indent', '-'+minute.charAt(minute.length-1)*50+'px'); clock(); }[/CODE] I need help updating my jQuery clock. setInterval and looping the function doesn't seem to work. The variables are updating well but the css properties are … | |
I am very interested in developing RIAs. So I just wanted to know you opinions of each of them. I have a good foundation of XHTML and CSS, so is AJAX better? -How compatible are they? -How well do they handle images and animations? -How flexible and versatile are they? … | |
I've installed a few software quite some time ago and the icons aren't working correctly. I tried solving it with Tuneup and CCleaner but it can't solve it either. First, when I open the file, they did not get the file type and ask me what program I want to … | |
How do I animate an image to fade in when I roll my mouse over a <div> and fade out when I move my mouse away. So far this is what I have. It doesn't seem to work well. Please help me, thanks. Javascript [CODE]<script type="text/javascript"> var homebutton = document.homebtn.style.opacity; … | |
Re: CSS stands of Cascading Style Sheet. It is used to customized the looks of classes and ids. It cannot control the content of the page. HTML controls the contents of the page and a bit of how it is lay out. HTML has a bit of customizing options, but CSS … | |
Re: There's nothing to use other then div and table(from what I remember). Unless you're talking about styling your elements, you can use the <span> tag. Web 2.0 differs from web 1.0 mainly because of better and new technologies and little bit because of design. So basically one of the the … | |
Re: I've got the same error, too, and no one I asked seems to be able to solve this. One way you can solve this is by using table (I think). | |
I've been trying all methods to stretch the background color to fill 100% of the page but it doesn't work in Firefox 3. It just stretches to where the content is. It seems to work fine in IE 7, but there is some space to scroll up and down. Here's … ![]() | |
Now I am almost done designing my website, but I seem to have trouble typing in content to my site. I am using Dreamweaver CS3. When I type into the table, they are pushed all the way to the right. I can't add spacing before my sentence. | |
I just started web designing, and I'm still quite new to Dreamweaver CS3. Here's my problem, I want to have a banner positioned right at the top of the page, but there's a gap there when I added a table. I tried using a template, but I'm not able to … |
The End.