Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: zura
  • Order by date
  1. zura

    Jquerytools, Loading external pages into overlay

    I am testing Jquerytools, Loading external pages into overlay, from source: http://jquerytools.org/demos/overlay/external.html. In my script it not works, i dont understand why... Thanks for help. <!DOCTYPE html> <html> <head> <title>jQuery Tools standalone demo</title> <script...
  2. zura

    Jquery. Change element id

    Thanks for help and advice.
  3. zura

    Jquery. Change element id

    Helo, I try to change element id and then do something with it. This script changes id, but click not works with it, I dont understand why. Thanks for help. $('#some').hover( function(){ $(this).attr('id', 'new'); } ); $('#new').click( function(){...
  4. zura

    hover

    Thanks for help.
  5. zura

    hover

    Helo, I am begginer and need help, here is my code. This works only for first div_"some". How do same with other divs_"some". Thanks for help. <script> $(document).ready(function(){ $('#some').hover( function() {$('#bottom-line').stop().animate({marginTop:'70px',height:'30px'},300);}...
  6. zura

    Ajax problems in chrome

    To jpadie. In "Network" tab I have:
  7. zura

    Ajax problems in chrome

    jpadie. It not makes response. I think problems is in ajax.
  8. zura

    Ajax problems in chrome

    Hi guys. I have problem with this script in chrome and cant solve it. It works in any another browser very well, but not in chrome. Thanks for help. mail = $("#mail").val(); $.ajax({ url: "conect.php", type: "POST", data: "mail=" + mail, cache: false...
  9. zura

    JQuery versions conflict

    Hi.. I use some jQuery script on my site. It works well with Jquery v-1.3.2. , but i have problems when i use new version (ex : v-1.8.3 or some older). Here is my script and source link. http://allshares.ge/download.php?id=A9895F0175 Thanks for help. Merry christmas. <!DOCTYPE html PUBLIC...
  10. zura

    printef

    Hi. Is possible to include php file inside printf ? Thank you for help. <?php $result = mysql_query("SELECT * FROM base WHERE id='$id' ",$db1); } if (mysql_num_rows($result) > 0) { $myrow = mysql_fetch_array($result); do { printf(" <table> <tr> <td> <p>%s</p>...
  11. zura

    htaccess

    Hi! How to trim the file name in the address bar? For example, the is: http://test.com/index.php http://test.com/registration/page.php needed: http://test.com http://test.com/registration/ Thank you for your help.
  12. zura

    jQuery

    This script is working correctly (alert) but in console is "undefined" (need in console 'yes' or 'no' like in alert). Thanks for help. var res; if($(this).hasClass('login') == true){ login = $("#login").val(); $.ajax({ url: "testing.php", type: "POST", data...
  13. zura

    JQuery function(data)

    This part [ append($error.clone().text('This email is already taken')) ] do not works... ???... (This [ $(this).addClass('error') ] works correctly...) thanks for help. $(document).ready(function() { $('.btn-submit').click(function(e){ // Declare the function variables: // Parent...
  14. zura

    jQuery check mysql database

    HI... how can i add to this script function of check email ("yes" or "not" already busy from another user in database) sorry for my limited english... Thankyou. $(document).ready(function() { $('.btn-submit').click(function(e){ // Declare the function variables: // Parent form, form...
  15. zura

    php header

    I solved this problem myself ...here script... <?php $nomeri = $_POST['operator'].$_POST['cellular']; $messageText = $_POST['message']; $data = "?login=zura&psw=zzz&phones=".$nomeri."&mes=".$messageText; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://smsc.ru/sys/send.php".$data)...
  16. zura

    Warning: Cannot modify header information ...

    Header(); does not works. Warning: Cannot modify header information - headers already sent by (output started at /home/sanikidz/domains/...). <?php ob_start(); $nomeri = $_POST['operator'].$_POST['cellular']; $messageText = $_POST['message']; $e =...
  17. zura

    php header

    How can i send $e on this url: http://smsc.ru/sys/send.php Header(); does not works. (Cannot modify header information - headers already sent by (output started at /home/...)) <?php ob_start(); $nomeri = $_POST['operator'].$_POST['cellular']; $messageText = $_POST['message']; $e =...
  18. zura

    HTML in JQuery

    thanks ...
  19. zura

    HTML in JQuery

    HI... How escape in this script HTML <html> <head> <script type="text/javascript" src="dialog_box.js"></script> </head> <body> <a href="javascript:showDialog('some text', '<p><font color="red">some text. "/\''&</td></tr>some text"</font></p>', 'some text');">link!</a> </body> </html>
  20. zura

    PHP MYSQL problems

    Thank you feherke.

Part and Inventory Search

Back
Top