How can I disable an input-field with jQuery using GM if the url contains text? I tried
$(document).ready( function() { if($("url:contains('text')")){ $(".input[id=field-owner]:disabled"); ...
I want make validation jquery without using from plugin, problem is here that after click on button and get alert(if field is empty) it go to url # that there is ...
#