Running JavaScript on IE6.0

  • Thread starter Thread starter Yaw
  • Start date Start date
Y

Yaw

Hi,

I am developing a payroll application in JavaScript but
occasionally I have to click the Refresh button in order
to retrieve data from MYSQL database.

Is there any way of activating the refresh button anytime
a hyperlink or button is clicked? Thanks,

Yaw
 
Yaw said:
I am developing a payroll application in JavaScript but
occasionally I have to click the Refresh button in order
to retrieve data from MYSQL database.

I don't see what this has to do with IE6, but...
You should rethink your application design. Client-side scripting is a nice
*addition* (e.g., use the onChange event to provide instantaneous user
feedback and/or validation, w/o requiring the user to hit the Submit button,
or causing a round-trip to the server). But depending exclusively upon ANY
client-side scripting solution is a bad idea, as they are easily circumvented
and manipulated. For a payroll application...feeding a database no less...it
is unthinkable! Look into using PHP, Perl, or ASP (in that order of
preference).

To your original point...
Is there any way of activating the refresh button anytime
a hyperlink or button is clicked?
Will <a href="#" target="_self"> do what you want?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top