How to hide a submit button in codeigniter?

Member

by deron , in category: PHP Frameworks , a year ago

How to hide a submit button in codeigniter?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by jasen , 9 months ago

@deron 

In CodeIgniter, you can hide a submit button using CSS by setting the "display" property to "none". Here's an example:

  1. Add a class name to your submit button. For example, let's use "hide-button":
1
<input type="submit" class="hide-button" value="Submit">


  1. Add the following CSS code to your stylesheet:
1
2
3
.hide-button {
    display: none;
}


This will hide the submit button with the class name "hide-button" on your page.

Related Threads:

How to hide a button if the user is logged in using elementor?
How to clear form after submit in Codeigniter?
How to hide and show divs on button click created dynamically in vue.js?
How to make button redirecting to external link in codeigniter?
How to submit a form in an iframe?
How to submit dropzone.js with different buttons?