E EvgenyB4A Active Member Licensed User Longtime User Mar 7, 2024 #1 I have HTML page where the button is created with CSS and defined as <button class="submitbutton">Submit</button>. I use wesbocket and Jquery. Then after pressing on Submit button - submitbutton_Click is not invoked. When I define button id="submitbutton">Submit</button> - submitbutton_Click does invoked but the button has no style. How to handle with button class?
I have HTML page where the button is created with CSS and defined as <button class="submitbutton">Submit</button>. I use wesbocket and Jquery. Then after pressing on Submit button - submitbutton_Click is not invoked. When I define button id="submitbutton">Submit</button> - submitbutton_Click does invoked but the button has no style. How to handle with button class?
DonManfred Expert Licensed User Longtime User Mar 7, 2024 #2 EvgenyB4A said: submitbutton_Click does invoked but the button has no style. Click to expand... What about HTML: <button id="submitbutton" class="submitbutton">Submit</button> You are not limited to have multiple tags inside a html-entity. How they work may depend on the javascript used. Upvote 1
EvgenyB4A said: submitbutton_Click does invoked but the button has no style. Click to expand... What about HTML: <button id="submitbutton" class="submitbutton">Submit</button> You are not limited to have multiple tags inside a html-entity. How they work may depend on the javascript used.
E EvgenyB4A Active Member Licensed User Longtime User Mar 7, 2024 #4 Is it possible to reload(refresh) the page after Submit from server? Upvote 0
DonManfred Expert Licensed User Longtime User Mar 7, 2024 #5 You should always start a new thread for a new question Upvote 0