Problème avec ajax sur CakePHP

Html->link("Créer votre dossier d'admission", array('action' => 'info_subscribe'), array('class' => 'btn btn-info create')); ?> et voici mon script **main.js** : $(document).ready(function() { $('.create').on('click', function (e){ e.preventDefault

5
Wysiwyg or not wysiwyg

html pour tout nettoyer. Le problème est que ça va être le client qui va modifier son contenu donc il se peut que le code redevienne dégueulasse. Ma question serait

4
Récupérer les valeurs d'un checkBox avec PhpStorm

HTML pour afficher des checkBox. Je ensuite fais un fonction PHP pour récuperer ce qui a été coché dans la checkBox. Cependant cela ne me retourne pas ce que j'ai coché

0
Utlisation knpSnappy

html = $this->renderView('van/list.html.twig', [ 'candidats'=> $candidat, 'title' => "Welcome to our PDF Test" ]); $filename = "myfirst_pdf_with_snappy"; //$websiteurl = "ourcodeworld.com"; //$snappy->get('knp_snappy.pdf')->generate('http://www.google.fr', '/path/to/the/file.pdf'); return new Response( $snappy

0
Aide sur une regex

html et je bloque sur un élément clé. Si le contenu contient le mot "Toto" par exemple, je le remplace bien entendu par un lien. Je fais en sorte que le remplacement

11
Conflit entre Owl Carousel sync et Ajax

html(data); } ); });$('.win-post').on('click','.im-x-mark',function(){ $("#window-post").html(""); }); }); })(jQuery); ``` Le script de syncronisation owl carousel : ``` var sl = jQuery.noConflict(); sl(document).ready(function() { var sync1 = sl("#slide

0
Double envoie d'un formulaire.

html){ if(html=="ok"){ document.getElementById("da-ex-wizard-form").submit(); document.getElementById("da-ex-wizard-form").action = ""; document.getElementById("da-ex-wizard-form").target = ""; document.getElementById("da-ex-wizard-form").submit(); } } }); }); le problème

6
Problème Hover avec jQuery
heb,

HTML Mon code jQuery ``` $( "#tablesForm tr" ).hover( function() { var idCard = $(this).attr("id"); if (idCard > 0) { $("#results").load("data/show_card.php?mode=client&id="+idCard).show(); } }, function() { $("#results").hide(); } ); ``` Mon code HTML

0
Ligne bleu qui se forme lors d'une animation

HTML : ```HTML Matières Tchat ``` CSS : ```CSS nav .links { background-color: #7CF2E2; width : 50%; position : fixed; top : 10vh; left : -50%; display : flex; flex-direction: column; justify-content: inherit; padding : 0; } ``` Voilà

4