Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a function which takes values from various html elements of the page to create a string and pass on to a variable. now this works great for all browsers except IE 8 and 9. IE tends to skip the part of fetching the values and goes straight to the variable and finds nothing..

is there a way to sync it all so that it works in IE?

function seturl() {
        var qstring = returnQString();

        $('span.keyword').text($.trim($('#hdnKeyWord').attr('value')));
        $('input.search_box').attr('value', $.trim($('#hdnKeyWord').attr('value')));
        $('#hdnSearchKeyword').attr('value', $.trim($('#hdnKeyWord').attr('value')));

        $(".search_box").val($.trim($("#hdn_span_hdnKeyWord").text()));
        $(".header_inner input[type='text']").focus();
        $(".search_term input[type='text']").focus();
        $('#locationurl').attr('value', qstring);
    }

    function returnQString(){
        var qstring = $.trim($('#locationurl').attr('init')); //initial value of the url
        qstring += "?type=" + $('#hdnSTSearch').attr('value'); // type of handler hit
        qstring += "&keyword=" + encodeURIComponent($('#hdnKeyWord').attr('value')); // keyword addition
        qstring += "&pagestart=" + $('#current_page').attr('value'); // pagestart(current page) addition
        qstring += "&pagesize=" + $('#show_per_page').attr('value'); // per page size addition
        qstring += "&facets=" // facetsearch
        $.each(selectedFilter.items, function (index, value) {
            qstring += value.filter + ",";
        });     
        qstring += "&selectedSection=" + selectedSection // Section Select
        return qstring;
    }
share|improve this question
1  
Maybe you forgot to put async: true or perhaps you didnt setup AJAX for IE ? – panzerschreck Jun 27 '12 at 7:06
2  
Did you run the js inside $(document).ready ? – Angel Jun 27 '12 at 7:13
1  
I can't see any asynchronous code in this snippet? Could you mark with comments wich parts is skipped in IE? – albin Jun 27 '12 at 7:22

1 Answer

May be because of semicolon problem. I found two places of returnQString

function returnQString(){
    var qstring = $.trim($('#locationurl').attr('init')); 
    qstring += "?type=" + $('#hdnSTSearch').attr('value');
    qstring += "&keyword=" + encodeURIComponent($('#hdnKeyWord').attr('value')); 
    qstring += "&pagestart=" + $('#current_page').attr('value');
    qstring += "&pagesize=" + $('#show_per_page').attr('value');
    qstring += "&facets=" ; // THIS LINE
    $.each(selectedFilter.items, function (index, value) {
        qstring += value.filter + ",";
    });     
    qstring += "&selectedSection=" + selectedSection; //THIS LINE
    return qstring;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.