www.webdeveloper.com

Search:

Type: Posts; User: DanInMA

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. jQuery those 2 document ready block have nothing to do...

    those 2 document ready block have nothing to do with images being out anywhere, and the code you have shown doesn't even have images in it anywhere.

    - also your second block of code basically says...
  2. Thread: Problem

    by DanInMA
    Replies
    6
    Views
    105

    ok the lightbox script is adding...

    ok the lightbox script is adding visibility:hidden to one of it's own elements for some odd reason and it's hiding the iframe.

    add
    #lightbox .content {
    float: left;
    overflow: auto;
    ...
  3. Thread: Problem

    by DanInMA
    Replies
    6
    Views
    105

    i cant find any element in your html with the...

    i cant find any element in your html with the word scroller or scroll or wt, and the only element i see scrolling anything appears to be working. please be more specific
  4. Replies
    3
    Views
    323

    you should also perfom validation onSubmit :...

    you should also perfom validation onSubmit : http://www.htmlcodetutorial.com/forms/_FORM_onSubmit.html
  5. Replies
    2
    Views
    336

    i was going to try and write a solution, but...

    i was going to try and write a solution, but there is a darn good one already : http://davidwalsh.name/jquery-datepicker-disable-days
  6. Replies
    1
    Views
    315

    in $("div.toggle_container2 round5:first") ...

    in $("div.toggle_container2 round5:first")

    what is round5? it probably need to be $("div.toggle_container2 .round5:first") , assuming round5 is a class
    - also .att("display","block") should...
  7. Replies
    7
    Views
    2,243

    probably best to start a new thread for that...

    probably best to start a new thread for that issue. make sure to include a code sample and a link to the autocomplete plugin you are using.
  8. Replies
    9
    Views
    2,095

    so you want to use a javscript library, to load...

    so you want to use a javscript library, to load another javascript library? The most efficient way would be to simply load jquery, unless im missing something?
  9. you can do it with jquery easily enough - resize...

    you can do it with jquery easily enough -
    resize event - http://api.jquery.com/resize/


    - getting viewport sizes:


    To get the width and height of the viewport:

    var viewportWidth =...
  10. Replies
    7
    Views
    1,537

    you are using firebug but you didnt see any of...

    you are using firebug but you didnt see any of this? :
  11. Replies
    8
    Views
    13,359

    this post is from 7 years ago. I dont think hes...

    this post is from 7 years ago. I dont think hes going to respond :)
  12. Replies
    5
    Views
    769

    could be. you might want to start by telling us...

    could be. you might want to start by telling us what in the world a qooxdoo script is and what language it is in.

    typically a web service pulls data from a database or other such sources. I found...
  13. Replies
    17
    Views
    1,189

    yup, ok this should do it var xmlHttp ...

    yup, ok this should do it


    var xmlHttp

    function showHint(str, id)
    {
    xmlHttp=GetXmlHttpObject()
    if (xmlHttp==null)
    {
  14. Replies
    7
    Views
    1,537

    incorrect. you can have as many document.ready...

    incorrect. you can have as many document.ready blocks as you want. it was writtent with such usage in mind.

    that being said, you've got yourself a library conflict. you've got jquery and...
  15. Replies
    17
    Views
    1,189

    var url="rate.php" url=url+"?q="+str ...

    var url="rate.php"
    url=url+"?q="+str
    url=url+"&id="+id+"&sid="+Math.random()
    xmlHttp.onreadystatechange=stateChanged
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)
    }

    function...
  16. AJAX hrmmm. ok perhaps this.submit() ( ive seen ti...

    hrmmm. ok perhaps this.submit() ( ive seen ti done in a similar fashion before)
  17. AJAX did you try self.submit() instead of return true

    did you try self.submit() instead of return true
  18. AJAX Inseatd of success: function() {...

    Inseatd of


    success: function() {
    $("#contact").submit();
    }

    try something simple like returning true ( havent tested this, jsut a theory)
  19. jQuery 1. }).appendTo('.' + uniqueClass +...

    1.


    }).appendTo('.' + uniqueClass + '-slidelinks');

    to
    }).bind('mouseleave',function(){//code}).appendTo('.' + uniqueClass + '-slidelinks');

    cant comment on number 2 w/o seeing the actual...
  20. Replies
    1
    Views
    564

    jQuery eitehr your first condition is being met,...

    eitehr your first condition is being met, #delete-dialog2 doesnt exist in the current document, or you are calling the function incorrectly. seeing as how .dialog() is probably from some kind of...
  21. please show an example of the DOMelem variable....

    please show an example of the DOMelem variable.
    Also where are you using the json data in this example?
    - and What error are you getting? you have shown an empty row element, but no errors.
  22. Replies
    3
    Views
    391

    looks liek a problem with the loop on the array ...

    looks liek a problem with the loop on the array

    here's some different ways to do it, perhaps that will help: http://www.openjs.com/articles/for_loop.php
  23. Thread: Forms

    by DanInMA
    Replies
    10
    Views
    849

    if your form submits via javscript/ajax, then you...

    if your form submits via javscript/ajax, then you would add a redirect in that code, if your using a simpler setup, for example if the user is always directed to the page that processes the form when...
  24. Replies
    10
    Views
    700

    jQuery [] denotes an array and you cant do that in an...

    [] denotes an array and you cant do that in an array. you need to do your if statement perhaps, before $.supersized begins

    also whats the point of using isdefault = true? then its always goign to...
  25. 1. You only "need" javascript because youve built...

    1. You only "need" javascript because youve built dropdown menus that rely on it. this is not good.
    2. The way you are doing this is very bad for SEO reasons and search result reasons
    3. a site...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles