Posts by Sergio Teixeira • 85 points
7 posts
-
1
votes2
answers74
viewsQ: icheck plugin does not disable all checkbox
Boas, I have the problem that I have 6 checkbox but can only select a maximum of 2 before submitting the form. What happens is that by clicking on the third box it gives the message and clears the…
jqueryasked Sergio Teixeira 85 -
1
votes1
answer155
viewsQ: jquery how to receive data line by line in a loop
In the test.php file I have: <?php echo "<input type='button' value='Envia' class='btenvia'/><br><br>"; echo "<div id='mostradados'></div>"; ?> <script…
-
2
votes2
answers64
viewsQ: PHP variable problem with pelicas
I’m bringing this mysql database variable for a text input, but the result I’m not showing because of the pelicas. $cota = '946.9"1968/1975" AMA Ant'; echo '<input type="text" value="'.$cota.'"…
-
2
votes0
answers35
viewsQ: Embed pdf document and enable scroll to submit
Good morning, I would like to embed a pdf document on my website for a PHP registration form, in which after pulling the scroll to the end of the pdf, the commit button is activated. Here’s the…
-
1
votes1
answer20
viewsA: Save an image to camanjs
solution: this line was missing to remove the initial part of the date:image: var raw_image_data = imagedata.replace(/^data\:image\/\w+\;base64\,/, '');
-
0
votes1
answer20
viewsQ: Save an image to camanjs
Good afternoon, I am using the plugin camanjs and I am not able to save the image to the server, I have the code like this: <img id="camanimage" src="image.jpg" style="height:200px;"> In…
-
1
votes1
answer265
viewsQ: How to split the string after counting 50 characters
I have to count 50 characters and make a split in two variables. The ideal would be to split the last space before 50 characters. This is to be able to put the address in two lines in the database.…