I understand that you wish to use a custom audio player, but in this case I would take my loss and use the embed element to display the default audio player. I think the player that will be used by...
I think both approaches will work. The only difference is that my approach requires people to have Javascript turned on, while you're way doesn't. So in a way you're approach is a little bit better...
Tirna what you suggest might work, but I think the way I did it is much less complicated and does the same thing. Unless there is something that's not quite the way it should be i'm always open for...
Ah yes now I see, sorry it's a bit late here and I thought you wanted to post the forms to the same page, which would have been quite inefficient. I think your problem can be solved using Javascript...
What on earth are you trying to accomplish? No offense, but I don't see why you would want to use two separate forms with the same target (action="") to parse identical values for. Could you please...
I have used hidden tables to mimic the feeling of multiple pages, while in fact the user remains on the same page. The tables all exist within one form element and as such all input values are parsed...
Hello, position absolute is relative to the last element that used a position relative or position absolute attribute. In other words, to make your image move to the desired position you will have to...
I'm currently working on it but am facing a serious problem here. I can't get it to check <a href=""></a> but it can check <a></a>, in which case it now returns a warning. One bug has been removed...
I see so what you're saying is that whether document.getElementById('list').selectedIndex or list.selectedIndex works is dependent of which doctype you're using. I used the HTML 4 strict doctype,...
Strange... The code seems to work just fine, but indeed using document.getElementById('list').selectedIndex instead of list.selectedIndex makes more sense. Yet if I change it, the code doesn't work...
Indeed my errors originate from posting way to quickly. As I am new to this forum, and to any forum for that matter, I am not accustomed to the way things work. I shall take your tips into...
1) I didn't read the question that well and ended up skipping the 'textbox' part. (my fault)
2) I write the codes by heart and as such create (small) errors in my code. In this case I didn't add...
Indeed it should hav been the other way around. Take a look at http://webdesign.about.com/od/cssglossary/g/bldefnormalflow.htm and http://www.htmldog.com/guides/cssadvanced/layout/ I learned about...
maybe the problem is that you are trying to use PHP within Javascript wich results in some kind of collision between the both. What I have experienced using Javascript and PHP is that you should...