Tagged Questions

5
votes
3answers
874 views

Validate DOM manipulation when using Selenium

I'm using Selenium to test my application. A nice test would be that after every DOM manipulation I would validate the DOM. Is there a nice way to do this? Obvious ways are: use some builtin ...
1
vote
1answer
52 views

What changes to DOM are made when MVC Validation triggers?

I have a form in a modal window that is currently performing some validation. (I am using ASP.NET MVC, JQuery UI, ajax forms, data annotations and unobtrusive is active) When this validation triggers ...
1
vote
3answers
86 views

Is there a way to validate the HTML of a page after AJAX operations are performed on it?

I'm writing a web app that inserts and modifies HTML elements via AJAX using JQuery. It works very nicely, but I want to be sure everything is ok under the bonnet. When I inspect the source of the ...
1
vote
2answers
169 views

HTML Validator in Javascript/PHP? ( not necessarily XML )

I'm looking for something like http://validator.nu/, I'll be validating html input ( string ) and I want to notify the user if there are any missing end tags, whether a certain element can't have a ...
0
votes
2answers
50 views

Validate form added to DOM with jQuery validate

Quick question: How can I use good, old jQuery Validate to validate a form which gets added to the DOM (via Ajax) after the page has loaded? $("form#superForm").validate(options); doesn't work... ...
0
votes
5answers
437 views

Check label value change

<label id="error_msg"></label> Now, I want to alert a message that please fill text-box, whenever there is change in value of error_msg Also, I want to check whether label is empty or ...
0
votes
1answer
80 views

Form hints with validation

Hi I'm trying to create a form that has a hints section. When each field is clicked, a section next to it will display a hint, when the form is unfocused, it will validate. In the same section that ...
0
votes
2answers
2k views

Javascript check box validation and length

Have check boxes 1-300. This JS function alerts user when nothing is selected. Function works great for the first 290 elements. For example, when item 291 is selected it alerts that nothing is ...
0
votes
1answer
1k views

jQuery and jVal Validation Plug-in. Adding an attribute to an element

I'm trying to add the jVal attribute to a textbox that I created in the HTML. <input id="subJobName" type="text" jval="{valid:function (val) { return validateSubJobName(val); }, message:'Name ...