w3c

websocket for binary transfer of data & decode

I was reading through the specification and many examples about usage of websockets. Almost all of them talk about UTF-8 or ascii message transfer using websockets. The latest Hybi websocket spec requested support for binary transfer. REQ 6 in hybi spec Also i read somewhere that chrome supports hybi. But latest release Chrome 7.0 wor...

Does Silverligth 4 comply with the WCAG 2.0 specifications

I need to build a web application which complies with the WCAG 2.0 specification. One main feature of this application is that some code must be executed on the client. I don't have any way to avoid it (it's the old problem of the electronic sign). That's why I thought of Silverlight (and because of RIA services, of course). But I hav...

Solution to do submit-for-validation to W3C Validator in PHP?

To use the W3C Validator your (i.e. beta-) website normally has to be online which I'd rather avoid. Or use the direct input method. Say hello to continuous copy & paste. My Idea: The "direct input methods" submits the input as a form (no surprise here). In other words: The actual validation-page receives a POST request. So: Could I m...

W3C Iframe Validation

Hello. I'm using the Facebook plugin called Activity Feed. The URL of this plugin is: http://developers.facebook.com/docs/reference/plugins/activity Now, I'm having a problem. When I get the code for using this plugin it comes inside an IFrame, and has a not standard attribute for Internet Explorer browsers, or at least that what I r...

When to use <br> line breaks vs CSS positioning?

I've often wondered about the proper use of a <br> line break. Seems that often they are incorrectly used for positioning or clearing content where CSS should instead be used. W3schoools.org says to use <br> for blank lines, but not for creating or separating paragraphs. Looking over W3C HTML5 spec draft, it's a little clearer that...

curl to wc3 validator not working?

when I run the following, i get a w3c page with upload options, as though nothing has been uploaded. curl seems to be putting it up though, so i'm at a loss as to what to even troubleshoot dylan@MAJUSCULE:/opt/lampp/htdocs/dylanstestserver$ php index.php > test.html && curl -F "[email protected];type=text/html" http://validator....

jQuery serializeArray doesn't include the submit button that was clicked

I have a form that has two buttons. One for saving a record and the other for cancelling the save procedure. I am using the rails.js (a common AJAX/jQuery plug-in for those of you not in the know) javascript file that works with jQuery for unobtrusive javascript/ajax calls. When I send the form data over ajax, I want the name and value ...

Is it safe to omit </TD> and </TR> tags?

According to w3c </TD> and </TR> tags are optional, so the following table is perfectly valid. <table> <tr> <td>google <td>chrome </table> And all browsers I've tested it with render the table fine. I just wanted to ask if this is generally considered safe to use, or if older browsers, which I don't have access to, cause pro...

Existing List of W3C complient html attribute

It's there a place i can see wich attribute are w3c on all HTML Element, div,p,a,li,hr etc ... I check on w3cshool but find nothing. I need a list where they said someting like ... id : (div, a , hr , etc ...), class (div, a , hr , etc) ... ...