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 dencom 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: MrMiyagi
  • Content: Threads
  • Order by date
  1. MrMiyagi

    Help with simple jQuery based virtual keyboard?

    Hi, I need to make this work so would be thankful for some advice. I am building a simple virtual keyboard for a touchscreen. It works with one field but I have poblems when the user needs to select and fill many fields. I have few input fields and one textarea. User needs to be able to...
  2. MrMiyagi

    Simple PHP CMS for editing content ?

    Hello, I am building a simple informative website for a client. My problem is that the client needs a tool for editing text content on the site. I would just edit these few paragraph tags inside the html file and upload with ftp, but for the client some browser based solution is needed. So is...
  3. MrMiyagi

    Image Fader ?

    Hi, I need a script that would produce an image slideshow with a fade effect. I have this script and it almost works. Only some blinking every now and then. What do you think of the script? Any simplier suggestions or links? Thanks. var gblPhotoShufflerDivId = "rotator"; var...
  4. MrMiyagi

    Image Preloader?

    Hi, I have this code for preloading some big images on my page. The idea is to show a loading animation until the pics in the array are loaded. Most of the time it works, but sometimes it quits the loading animation before all images are loaded. Would be great if some jscript guru could check...
  5. MrMiyagi

    Fetch goldprice in realtime ?

    If I wanted to fetch the goldprice in real time(or between 10minutes) and publish it on my site. How could I do it? For example from here: http://money.cnn.com/data/commodities/ Or some chart like this: http://markets.ft.com/markets/commodities.asp Prototype framework has an...
  6. MrMiyagi

    PHP check if Javascript is disabled ?

    Hello, I was thinking if it is possible to check if javascript is disabled with php. I am not very experienced coder but was thinking that something like this might work: <noscript> <div id="script_disabled" type="hidden"> </noscript> <?php Check if id="script_disabled" exsists if(exsists){...
  7. MrMiyagi

    Loading XML into html tree structure?

    Hello, This might be complex but lets see if someone has an idea for best practice how to do this. There are two steps but even solvin the first one would be a huge help. Perhaps some framework like prototype/scriptaculous or mootools would be helpful... Step 1. I need to build an browser...
  8. MrMiyagi

    focusing on textfields

    Hi, I have a function like this to focus on textfields: function focusEffect(element){ document.getElementById(element).focus(); } I am using it to an element like this: onmouseover = "focusEffect('field1')" onMouseout="focusEffect('') I need to change this so that onmouseover event: "if...
  9. MrMiyagi

    Javascript image slideshow.

    Hi, I am trying to make a small image slideshow on my site. The problem is that I need there to be many slideshows rolling on the same page without interfearing with each others. I think I found a nice prototype driven script to do this, but I can not get it working...
  10. MrMiyagi

    Commenting feature on a website?

    Hi, I was wondering what would be the easiest way to add a commenting feature to a website? It would be a simple article with a possibility to comment on the bottom of the text. I understand that php/javascript needs to permanently write changes to the html, meaning that it needs to make the...
  11. MrMiyagi

    @font-face for IE ?

    Hi, I have a question about the @font-face feature. I have it working fine in firefox, but there is a problem with IE. This is how its supposed to work in IE: <!--[if IE]> <style type="text/css" media="screen"> @font-face{ font-family:'font1'; src: url('../fonts/font1.eot'); } </style>...
  12. MrMiyagi

    Img repeat-x and stretch / fixed-y ?

    Hi, My problem is about css. I have made a fixed background to my site using this kind of technique: Here I have defined the background image in the html file: <html> <head> </head> <body> <img src="img/bg.jpg" alt="" id="bg" /> <div id="pagecontainer"> Al page content </div> </body> </html>...
  13. MrMiyagi

    Toggling body tag class names to get css menu higlights working.

    Hi, My navigation works like this: $n = ( isset( $_GET['n'] ) ? $_GET['n'] : 0 ); $content = ""; switch ($n) { default; case "1": $content = "content for first page" break; case "2": $content = "content for second page" break; etcetc My navigation calls these: a href="?n=1" a href="?n=2"...
  14. MrMiyagi

    ie7 not showing link background image?

    Hello, Im in trouble..I have an anchor link with a background hover image that is defined in css. Everything works well except ie7(ie6 is not needed thank god). It does not show the background image for this link. I can get background color, but image wont work...Id be thankful for some advice...
  15. MrMiyagi

    Javascript to hide scrollbars in IE7

    Hello, I am trying to hide the scrollbars on my site. For all browsers except ie7 and ie6, this works: function hidescrollbars() { document.body.setStyle({ position:"fixed" }); document.body.setStyle({ overflow:"hidden" }); } function showscrollbars() { document.body.setStyle({ position:""...
  16. MrMiyagi

    MainMenu effect with Javascript?

    Hello, Im not very experienced jcripter, and was wondering if it is possible to do this type of main menu mouseover rolling effect with jscript instead of flash? Would be really helpful. http://bigspaceship.com/ It is sort of moving two rows of text in and out of a mask, and creating an...
  17. MrMiyagi

    Login input fields with static text, like ones on facebook?

    Hello, My problem is that i would like to have login input fields with text inside, like facebook has: http://facebook.com/ (email & password fields) The email text input field has the text "email" in it statically until start to type something else, and password input field has text...

Part and Inventory Search

Back
Top