Started 1 week ago (2009-11-03 09:53:00)
by Mark Nischalke
greendragons wrote: want that the hint text should appear in blue and input in black. Not possible in the same
textbox at the same time Basically you seem very confused as to how CSS and JavaScript actually work
Started 4 days, 12 hours ago (2009-11-06 04:42:00)
by Marc Firth
compninja25 wrote: for (Current; Current < stopValue; Current++) { Do you need to initialise "Current"? for (Current=0;Current < stopValue; Current++) {
Started 1 week ago (2009-11-03 12:08:00)
by Christian Graus
No, there's no way to get what an iframe does out of css.
Started 6 days, 12 hours ago (2009-11-04 05:31:00)
by Marc Firth
document.getElementById( ' mysubmitbutton' ).disabled = " disabled" ; Your js code should fire that to disable the button. alternatively you can hide the button: document.getElementById( ' mysubmitbutton' ).style.visibility = " hidden" ; document.getElementById( ' mysubmitbutton' ).style.display = " none" ; And make sure you Disable
the Enter Key: Disable Enter Key Tutorial ...
Started 5 days, 18 hours ago (2009-11-04 22:36:00)
by Mark Nischalke
Is there any reason you must use an iframe?
Started 1 week, 1 day ago (2009-11-02 12:13:00)
by Abhishek sur
No.. It wont be possible with normal alert ... You need to create custom alert for your site. You might either create an alert using Window.open or create custom html popup using div's.
Started 1 week ago (2009-11-03 11:59:00)
by greendragons
Yes it is done with
opacity in css.... For mozilla and others it is #id{ opacity: 0.4; } for IE it is #id{ filter:alpha(opacity=40 ); } so mix 'em up #id{ opacity: 0.4; filter:alpha(opacity=40 ); }
Started 2 days, 12 hours ago (2009-11-08 05:07:00)
by Abhishek sur
I think you are looking for something like Server Push technology. In case of Normal Http
Request - Response, it is not possible simply. Rather I think you need to expose this feature through an HTTPHandler. You ping the handler using AJAX to get new response. Whenever new alert received, just place a floating div and write the content. You can also adjust the scroll position, so that the...
Started 5 days, 22 hours ago (2009-11-04 19:23:00)
by Alivemau5
Hi, I have a combobox (aka select) with some options retrieved from the database.. The user might
choose one item from there or click next to the combo on "Other". Here is the thing: I wan't to show a dialog that lets the user to add a new registry to the database and after that, the dialog should be closed and the combo should have the new option without a simple refresh (an HTTP GET, ...
Started 2 days, 12 hours ago (2009-11-08 05:30:00)
by Abhishek sur
If we dont go there, how could we know...