answersLogoWhite

0


Best Answer

During an inspection, employers have the right to:

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What form do you use to submit and OSHA complaint?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the process of filing a complaint with the CA Department of Insurance?

To submit a complaint with the California Department of Insurance you must use Request for Assistance forms. These forms include the hard copy printable Request for Assistance Form with which you must submit with attached any supporting documents then mail all documents to the address listed on the RAF form.


What tag would you use to create a submit button with the label send form?

To create a submit button, use the input type submit. To assign text to the button, pass the text in as the value of the value attribute. Like so: <input type="submit" value="Send Form">


What are OSHA 300 and OSHA 400?

The OSHA 300 is the "Log of work-related injuries and illnesses". This is the form that an employer would use to record all the employee injuries/illnesses as they occur throughout a year. The nature of the injury/illness is also recorded. There is no OSHA 400.


Which attribute specifies the submit URL in a form tag in HTML?

Use the "action" attribute of a FORM element to specify the URI of the form processor.


Is it possible to use javascript to execute a form through post?

Yes by using: document.forms["myform"].submit(); where the form is <form id="myform" action="whatever.php" method="post"></form> But be careful as I had issues for ages with variables/methods clashing. If you are using any buttons with the name submit then change this. It seems to be that document.forms["myform"].submit(); clashes with <input name="submit" type="submit" value="value"> This solved by simply changing the name to something else


How do you recommend a book to a library?

Libraries often have an online form that patrons can use to submit recommendations. Patrons can typically also submit a recommendations in person at the library.


Does OSHA require the use of sharps containers?

In medical situations that can produce sharps OSHA does require their availability and use.


Php code to insert value from textbox into dropdownlist?

Once you submit a form you can use the $_POST[] array to grab the data from a form with PHP. You can then use this data to insert it into a form. Here is an example: <?php if($_POST['submit']){ $text_box_contents = $_POST['comments']; echo ' <select> <option>'.$text_box_contents .'</option> </select>'; }else{ echo ' <form method="post" action="$_SERVER['self']"> <textarea name="comments" cols="40" rows="5"> hostmysite.com Enter your comments here... </textarea><br> <input type="submit" value="Submit" /> </form>'; } ?>


Where can you make a complaint to WikiAnswers?

You can fill out the contact form located in the related links section below to contact WikiAnswers if you have constructive feedback or ideas. If it is just a complaint about the site then please do not fill out the form because unless it is constructive criticism it does not help anything. There are many bugs on the site right now as a result of many changes being done so please be patient and you can also use the communtiy forum to submit bug reports or ask questions regarding the site.


Where can one file complaints about Broward County Transit?

If one is looking to file a complaint about Broward County Transit,the best place to visit would be the Broward County Transit website.Here one can find a complaint form which one can use to file the complaint.


What is the definition of an OSHA accident?

OSHA does not define the word "accident" and does not use it in its regulations.


Can HTML form be sent by Ajax?

Yes. You can use AJAX to submit the form. You can also use AJAX to get the actual HTML to produce the form (although you might also simply use that AJAX call to describe the form and then produce the HTML on the receiving end.)