In my project I should upload images, videos and documents. I'm using jquery file-input and it works fine with, images and document, but when I upload video with longer duration, I recevive this error: Something went wrong with the file upload operation. Please try again later!
I've read something about jquery.fileupload-video, but I did not found documentation and examples to apply in my project.
I need to change the background color and the color text in tr after calling php file with ajax. It works fine if a insert the number of the row where to change style css. But it not works if I give an index. This is my code with index (i), The value of the variable i is 5 (sure!!):
var i = $("#cont").val(); $('#miaDisp tbody tr:eq(i)').css('background-color','green'); $('#miaDisp tbody tr:eq(i)').css('color','white');
Hi, I need your help to complete a function where there is a nested table. When I click on element it opens the second table and it shows all his elements and the fa-plus icon turns on fa-minus. I would like to close the elements of the first table when I click on it and the fa-icon fa-minus turns on fa-plus.
Hi, I need your help to implement the procedure that allows me to assign status to a student through radio buttons. When set to Deferred or Transfered, it must automatically activate a dialog. I tried different solutions, this is the last attempt, but it doen't work:
$ ('input: radio [name = status]'). Click (function () { Alert ("stato ->" + $ ("# status"). Val ())
Hi, in my application I would like to implement a function that disable all functions during a program load. I mean, when I have a ajax request to execute a php program, I need to disable the mouse and the keyboard so the user can not click on menu bar, or on link, etc.
Hi, in a loop I have to select the 4th td of a table. I've used this: var id = $('#miaTabella tr:eq(1) td:eq(4)').html() it works, but I use always the 2nd row. How can I change tr:eq(1) with the index of the loop? Some thing like this:
for(i=0;i<10;i++) var id = $('#miaTabella tr:eq(i) td:eq(4)').html()
Hi, I need your help because it happens that in a js function return a value from a file php. This php file is executed via ajax and on success I check the value. At the first execution it returns the right value, after the next exections it returns always the same value. I have to refresh the page to have the right execution.
HelloIneed your helpto seta hyperlinkon multiplecolumns in a tablehtml. Let me explain:The followingcodeI want toset ahyperlinkfrom the secondto the fourthcolumn of the table.
Hi everybody, I would like to know if is possible to create a local area where same PCs, connected by LAN, can share some software. For example in laboratory where are PCs conneted by LAN, theteacher givesa lecture to studentsenteringa restricted area controlledby the teacher.
Hi everybody, I need to know how can I load a dialog before this: $("<form method='post' action='registroQuadri1.php' target='_new'><input type=hidden name=a value='"+arg1+"'/><input name=b value='"+arg2+"'/></form>").appendTo("body").submit()
Hi,
I have a problem using ajax beforeSend.
I execute a php file using this:
<li><a href="#"
onclick="window.open(file.php?c=<?php echo
$c?>&m=<?php echo $m?>')">Registro personale</a></li>
in file.php there is a control:
if (isset($_GET['c']))
{
$a1 = $_GET['c'];
$a2 = $_GET['m'];
$a3 = 0;
Then inviaClasse function I send a ajax request, but beforeSend not
working. Success is ok.
$.ajax({
type: 'POST',
url: "registroQuadri1.php",
data: {a:arg1, b:arg2, c:arg3},
Hi,
I need your help to display an alert (smartAlert) during php file is
calling by ajax beforeSend.
This is my code. It works fine but only inside div #risulta. Before that
there are some links there are disabled after beforeSend:
$.alert.open({ type: 'info',
title: 'RegistroOnWeb - Caricamento in corso -',
content: 'Caricamento del registro personale in corso.
<br> Si prega di attendere...', buttons:
false, cancel: false }); }, success:
function(msg){ $("#risulta").html(msg);
datiJQuery(arg4); });