Search results

  1. Teensweb

    Safari Issue

    Cross-browser compatibility is one of the primary goals of every library, so it was very likely that jquery fixed some issue or the other in their newer versions...
  2. Teensweb

    Create Textarea

    It's not a bug, its a feature! If you wanna turn that off jus add style="resize: none;" BTW, do you know that there are some things called search engines? Before posting any questions on this forum we expect that you do some research on your topic! For example just googling "textarea noresize"...
  3. Teensweb

    Build a Chat option

    You'd need atleast php and javascript ( and of course html! ). For open source scripts see http://www.ajaxchat.org/ or http://www.fleaim.com/ or http://ajaxim.com/ - I'm not sure if these are allowed on your hosting package....
  4. Teensweb

    Safari Issue

    Does it work locally for you? And did you try upgrading to jquery 1.6.1?
  5. Teensweb

    Safari Issue

    What solution did you try? It might be a bug with safari, if you've already tried if ($.browser.safari && $.browser.version < 523 ) { this.buttons(false, false); $(window).bind('load', function() { self.setup(); }); } else this.setup()...
  6. Teensweb

    .htacces trouble

    @ vv.bbcc19 : He probably knows about empty .htaccess and clearly says what he wants to acheive, if you can point out what's the mistake in his code, it would make more sense-no offence. I'm not sure about this but did you try adding: Options +FollowSymlinks ?
  7. Teensweb

    issue in chrome

    Uh oh, dint realize that they dumped the quick brown fox- lol! I'm not sure about this, but I think there might be some extra css in your page that you can remove to optimize the size/rendering. Good luck anyway!
  8. Teensweb

    issue in chrome

    You could do something like: <li><a style="display: block; margin: 0; padding: 5px;" href="#">Home</a></li> And change the padding of the parent li tag to 0.(its on your main.css under ul.SideNavList li{} ) Based on the cotent of the page, I guess the page was rendered by some template...
  9. Teensweb

    CSS: Doubt about positioning div on IE7

    I'll try normalizing, it seems a good idea. But can you tell me exactly how different browsers(atleast ff and chrome) calculates margin for headers?
  10. Teensweb

    issue in chrome

    Works fine for me with chrome (latest ver). BTW, in your left nav menu <a> contains an <li> tag which's not correct(allowed), but in your case it won't make a difference in rendering though.
  11. Teensweb

    CSS: Doubt about positioning div on IE7

    Means everything is unpredictable right? I know about conditionals but the problem is that I'm not sure what to put in there! And can you provide any info on why things are great with ie8? One more question, can you tell me whats the default margin for an h2 tag? I googled and saw somewhere that...
  12. Teensweb

    CSS: Doubt about positioning div on IE7

    Hi everyone, I now face the simple and irritating trouble of making IE see the truth! So, here it goes: I have a layout, It works fine with almost every browser on earth other than IE(7 or lower), and I am one of those guys who want a 'valid html/css' tag on every page I write- same goes true...
  13. Teensweb

    Help on binding mouseover with jquery.

    I guess I should be giving up on the stupid proto; I am not getting much ahead even with firebug and my free server at firebolt.co.cc is down. BTW, one question: Is binding an event to all items of a class any beneficial over looping through each element manually to do the same?
  14. Teensweb

    What are Credits ?

    Please read http://x10hosting.com/forums/useful-information/ before posting threads
  15. Teensweb

    How can i reply to Other users ?

    If you are talking about PM(Private message) there's a "Reply" link displayed under the message you received. Credits can be obtained in many ways, you get (usually) 5 credits for each post you make on this forum. Credits can also be transferred by anyone to your account in return for some...
  16. Teensweb

    Help on binding mouseover with jquery.

    I thought that was too obvious to require explicit statement as there were only three js files on my page and two of them were the jquery and its ui repectively, and no one here expect that I wrote both of them too, right? I'm not being rude here, I know that I have no right to be-maybe I'm just...
  17. Teensweb

    html form input attribute

    Do something like: <? if($_POST["psswrd"]=="yourpassword") { echo 'your content'; } else echo "Wrong password"; ?> Save it as filname.php and the form will look something like: <form action="filename.php" method="post"> password: <input type="password" name="psswrd" /> <input...
  18. Teensweb

    Voting Incentive script Help.

    I dint get the part you said about the include, but I have no clue as to how a meta tag(which obviously is pure html) can interfere on your php script...! Sorry that I could be of no further help... Edit: Uh, glad that you got it solved..
  19. Teensweb

    Voting Incentive script Help.

    Can't you use a meta refresh tag?
Top