3
votes
Disabling button with javascript: FF vs IE
It is easy: a disabled submit button do not submit a form in IE. Consider to restructure your code:
Use a regular button, disable it, and call form.submit() from its handler.
…
2
votes
How to resize html canvas element?
You didn't publish your code, and I suspect you do something wrong. it is possible to change the size by assigning width and height attributes using numbers:
canvasNode.width = 200 …
4
votes
Conflict between Drag and drop and sortable jquery plugins
You cannot mix those plugins: they process the same events, and cannot cooperate together. Either rethink your UI, or use different tools.
Is it possible to do it? Yes, of course. For examp …
0
votes
0
votes
can the name of a input tag be changed with javascript ?
Sure. If jQuery is your poison, this should do the trick:
$("input[name=some_name]").attr("name", "other_name");
…
