
Lautarox
Members-
Posts
132 -
Joined
-
Last visited
Never
Everything posted by Lautarox
-
About the fixed property, I don't seem to get it working correctly, the center div must be 100% width, I just don't want things to change places when resizing.. Take a look http://www.c4bikes.com.ar/index2.php
-
Yes it has a doctype and the font tag was just for testing purposes, I forgot to remove it, thanks I understood the fixed property
-
Yeah but, I mean, it resizes and the div disappears, I want it to stop resizing and be there, not disappear when it gets smaller
-
phparray's method worked better, cause of the divs aligment, it was really ugly postioning the menu with float: right; what's clear for? I've also added a pusher on the left side of the content so it can change if the browser screen is small, something like.. <div class="c_center"> <div class="pusher"></div> <div class="container"> <font color="#f4e21f"> <?php $content->load(); ?> </font> </div> <div class="rightbar"> <div class="rightmenu"> <? $pages->load(); ?> </div> <div class="archives"> <? $blog->archives(); ?> </div> </div> </div> I've noticed I have another problem, this is my menu style .rightbar { min-height: 500px; height:auto !important; height: 500px; width: 200px; margin-left: 10px; -moz-border-radius: 1em; border-radius: 1em; float: left; border: #f4e21f 1px solid; background-color: #2c2c2c; } When I resize the browser, it dissapears ¬¬
-
This is what i want to do.. content and menu change sizes, I've tried dividing everything in 3 divs, the header, the center and the footer, the center had the content and the menu, but the menu was in a fixed position, and in matters of browsers compatibility it is a little difficult to set it clear.. Now I'm triying with float.. what would you recommend?
-
Well.. I've seen that the ajax request doesn't recognize the php sessions, how could I create a working log in session? do I have to use only cookies?
-
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I've made it work, but there was a problem, I don't know why it took all the comments and added it again, well.. I just used the innerHTML property and made it work, thanks! -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I've used the childNodes method, and now it doesn't freeze until insertBefore begins, won't it be better to modify the entire container div's innerHTML ? -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
If so, why getElementsByName exists? -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I've changed all the id tags in my page, and replaced them with name tags, but it's still freezing while selecting things by name Actual code if(responses.accept == 1) { alert(document.getElementsByName('comment_container')[0]); var newComment = document.getElementsByName('comment_container')[0].cloneNode(true); alert(newComment); alert("Copio newComment"); newComment.getElementsByName('comment_autor')[0].innerHTML = "Comment posted by " + autor + " el " + day + "/" + month + "/" + year + " a las " + hora; alert("Agrego comment.autor"); newComment.getElementsByName('comment_contenido')[0].innerHTML = contenido; alert("Edito comment_contenido"); var insertHere = document.getElementsByName('comment_add')[0]; insertHere.parentNode.insertBefore(newFields,insertHere); if(newComment.getElementsByName("comment_admin")[0] != null) { newComment.getElementsByName("comment_admin")[0].innerHTML = response.admin; } document.getElementById('loading').innerHTML = "Comentario Agregado"; disableOrEnable("addcommentbutton"); } else { document.getElementById("loading").innerHTML = "Error Posteando Nuevo Comentario"; } -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
Yes it is finding it, because every comment has the same id, I think that selecting it by id doesn't work.. any suggestions? -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
Perfect, now I'm having a problem with the cloned node.. It freezes after alert("Copio newComment"); Is it correct to call the elements of the cloned node by id? alert("Response.accept == 1"); var newComment = document.getElementById('comment_container').cloneNode(true); alert("Copio newComment"); newComment.getElementById('comment_autor').innerHTML = "Comment posted by " + autor + " el " + day + "/" + month + "/" + year + " a las " + hora; alert("Agrego comment.autor"); newComment.getElementById('comment_contenido').innerHTML = contenido; alert("Edito comment_contenido"); var insertHere = document.getElementById('comment_add'); insertHere.parentNode.insertBefore(newFields,insertHere); if(newComment.getElementById("comment_admin") != null) { newComment.getElementById("comment_admin").innerHTML = response.admin; } document.getElementById('loading').innerHTML = "Comentario Agregado"; } else { getElementById("addcomment_error").innerHTML = "Error Posteando Nuevo Comentario"; } -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I really don't know why I can't edit my posts ¬¬, sorry to post again.. here's my problem, after many corrections.. My process page is writing the response correctly, {"accept":1,"admin":0} But my function is not processing it as it should.. take a look here if ((xmlHttp.readyState==4) && (xmlHttp.status==200)) { alert("Ready State = 4"); var responses = eval(xmlHttp.responseText); alert(responses.accept); -> it doesn't print the response and freezes if(responses.accept == 1) { function ajaxSubmitComment() { var xmlHttp = GetXmlHttpObject(); if(xmlHttp==null) { alert ("Your browser does not support AJAX!"); return; } var autor = document.getElementById('autor').value; var email = document.getElementById('email').value; var contenido = document.getElementById('contenido').value; var day = document.getElementById('day').value; var month = document.getElementById('month').value; var year = document.getElementById('year').value; var hora = document.getElementById('hora').value; var postid = document.getElementById('postid').value; var ip = document.getElementById('ip').value; xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==3) { document.getElementById('loading').innerHTML = "Resquest is being processed.. waiting.."; } if ((xmlHttp.readyState==4) && (xmlHttp.status==200)) { alert("Ready State = 4"); var responses = eval(xmlHttp.responseText); alert(responses.accept); if(responses.accept == 1) { alert("Response.accept == 1"); var newComment = document.getElementById('comment_container').cloneNode(true); newComment.getElementById("comment_container").comment_autor.innerHTML = "Comment posted by " + autor + " el " + day + "/" + month + "/" + year + " a las " + hora; newComment.getElementById("comment_container").comment_contenido.innerHTML = contenido; var insertHere = document.getElementById('comment_add'); insertHere.parentNode.insertBefore(newFields,insertHere); if(newComment.getElementById("comment_admin") != null) { newComment.getElementById("comment_admin").innerHTML = response.admin; } document.getElementById('loading').innerHTML = "Comentario Agregado"; } else { getElementById("addcomment_error").innerHTML = "Error Posteando Nuevo Comentario"; } } } var tosend = 'autor=' + autor + '&email=' + email + '&contenido=' + contenido + '&day=' + day + '&month=' + month + '&year=' + year + '&hora=' + hora + '&postid=' + postid + '&ip=' + ip; alert(tosend); xmlHttp.open('POST', 'jsontest.php?t=1'); xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlHttp.setRequestHeader("Content-length", tosend.length); xmlHttp.setRequestHeader("Connection", "close"); alert("A punto de mandar"); xmlHttp.send(tosend); } -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
Well.. I've done more tests and it freezes here var autor = document.getElementByName('autor').value; alert(autor); <INPUT type="text" name="autor" size="15" maxlength="25" -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I don't see anything alerted, that's the problem ¬¬ -
Mmm.. use get and a switch, for example, to call the first function ajax.php?t=1, and in ajax.php.. switch($_GET['t']) { case 1: // first function break; case 2: ... Is that what you want?
-
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
I had a little mistake with the function's name it was Submit instead of Sumbit, but it's not being executed neither.. Take a look to the alerts I've added function ajaxSubmitComment() { var xmlHttp = GetXmlHttpObject(); if(xmlHttp==null) { alert ("Your browser does not support AJAX!"); return; } var autor = document.getElementByName('autor').value; var email = document.getElementByName('email').value; var contenido = document.getElementByName('contenido').value; var day = document.getElementByName('day').value; var month = document.getElementByName('month').value; var year = document.getElementByName('year').value; var hora = document.getElementByName('hora').value; var postid = document.getElementByName('postid').value; var ip = document.getElementByName('ip').value; alert("var autor = " + autor + " var email = " + email + " var contenido = " + contenido + " var day = " + day + " var month = " + month + " var year = " + year + " var hora = " + hora + " var postid = " + postid + " var ip = " +ip); xmlHttp.open('POST', 'jsontest.php?t=1'); xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlHttp.send('autor=' + autor + '&email=' + email + '&contenido=' + contenido + '&day=' + day + '&month=' + month + '&year=' + year + '&hora=' + hora + '&postid=' + postid + '&ip=' + ip); xmlHttp.onreadystatechange=function() { if ((xmlHttp.readyState==4) && (xmlHttp.status==200)) { alert("Ready State = 4"); var responses = eval(xmlHttp.responseText); if(responses.accept == 1) { alert("Response.aceept == 1"); var newComment = document.getElementById('comment_container').cloneNode(true); newComment.getElementById("comment_container").comment_autor.innerHTML = "Comment posted by " + autor + " el " + day + "/" + month + "/" + year + " a las " + hora; newComment.getElementById("comment_container").comment_contenido.innerHTML = contenido; var insertHere = document.getElementById('comment_add'); insertHere.parentNode.insertBefore(newFields,insertHere); if(newComment.getElementById("comment_admin") != null) { newComment.getElementById("comment_admin").innerHTML = response.admin; } } else { getElementById("addcomment_error").innerHTML = "Error Posteando Nuevo Comentario"; } } } } -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
It is really not being executed ¬¬ Is this ok? <td><INPUT type="button" value="Agregar Comentario" onclick="ajaxSumbitComment();"></td> What about this? <script type="text/javascript" src="js/forms.js"></script> -> the file is in /js/forms.js , but it's the same.. Mmm.. could php bother the javascript execution? -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
How could I check errors in javascript in an effective way? Calling the function as I did is right? -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
The script doesn't work really.. -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
This is my comment form, any suggestions will be appreciated.. <?php function addcommentform () { $date = time(); $day = date("j", $date); $month = date("n", $date); $year = date("Y", $date); $hora = date("G:i:s", $date); echo '<FORM id="addcomment"> <table border="0">'; if ($_SESSION['logedin'] == 1) { echo '<tr class="top_comment_add"> <td>Usuario: '.$_SESSION['username'].' <INPUT type="hidden" name="autor" value="'.$_SESSION['username'].'"></td> <td><INPUT type="hidden" name="email" value="'.$_SESSION['email'].'"></td> </tr>'; } else { echo '<tr class="top_comment_add"> <td>Nombre: <br> <INPUT type="text" name="autor" size="15" maxlength="25"></td> </tr> <tr class="top_comment_add"> <td>E-Mail: <br> <INPUT type="text" name="email" size="20" maxlenght="70"></td> </tr>'; } echo '<tr class="med_comment_add"> <td>Comentario <br><TEXTAREA NAME="contenido" COLS="40" ROWS="6" maxlenght="250" WRAP="SOFT"></TEXTAREA></td> </tr> <tr> <td><INPUT type="hidden" name="day" value="'.$day.'"><INPUT type="hidden" name="month" value="'.$month.'"><INPUT type="hidden" name="year" value="'.$year.'"><INPUT type="hidden" name="hora" value="'.$hora.'"></td> </tr> <tr> <td><INPUT type="hidden" name="postid" value="'.$_GET['id'].'"></td> <td><INPUT type="hidden" name="ip" value="'.$_SERVER['REMOTE_ADDR'].'"></td> </tr> <tr> <td><INPUT type="submit" value="Agregar Comentario" onclick="ajaxSumbitComment();"></td> </tr> </table> </FORM> <span id="loading"></div>'; } And the ajax function.. function ajaxSubmitComment() { var xmlHttp = GetXmlHttpObject(); if(xmlHttp==null) { alert ("Your browser does not support AJAX!"); return; } var autor = document.getElementByName('autor').value; var email = document.getElementByName('email').value; var contenido = document.getElementByName('contenido').value; var day = document.getElementByName('day').value; var month = document.getElementByName('month').value; var year = document.getElementByName('year').value; var hora = document.getElementByName('hora').value; var postid = document.getElementByName('postid').value; var ip = document.getElementByName('ip').value; xmlHttp.open('POST', 'jsontest.php?t=1'); xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlHttp.send('autor=' + autor + '&email=' + email + '&contenido=' + contenido + '&day=' + day + '&month=' + month + '&year=' + year + '&hora=' + hora + '&postid=' + postid + '&ip=' + ip); xmlHttp.onreadystatechange=function() { if ((xmlHttp.readyState==4) && (xmlHttp.status==200)) { var responses = eval(xmlHttp.responseText); if(responses.accept == 1) { var newComment = document.getElementById('comment_container').cloneNode(true); newComment.getElementById("comment_container").comment_autor.innerHTML = "Comment posted by " + autor + " el " + day + "/" + month + "/" + year + " a las " + hora; newComment.getElementById("comment_container").comment_contenido.innerHTML = contenido; var insertHere = document.getElementById('comment_add'); insertHere.parentNode.insertBefore(newFields,insertHere); if(newComment.getElementById("comment_admin") != null) { newComment.getElementById("comment_admin").innerHTML = response.admin; } } else { getElementById("addcomment_error").innerHTML = "Error Posteando Nuevo Comentario"; } } } } ?> -
[SOLVED] Ajax Request Retrieve Multiple Data
Lautarox replied to Lautarox's topic in Javascript Help
It's just to write the login information, nothing to worry =P, could you give me an example or more info? -
I can't really find how to process in a tidy way the data retrieved from an ajax response, I mean, the server outputs an username and a password for example and I want to use it in the javascript code, I managed to find this.. var responses = eval(xmlHttp.responseText); responses.username responses.password But how do I have to output from the server to make the function read the data? Also I have another doubt, will the request web use the active session data? I mean, when I request something, and I need a certain access level to it, the server side checks the session vars to see if I can do something..
-
Perfect, thanks!
-
mjdamato is right, that function will only grow the image in a client side way, you may have to use ajax to save the clicks and sure you'll need another language to show for the first time the growth image, it's not difficult..