jQuery BBQ is a "Back Button & Query Library" that enables simple bookmarkable #hash history via a cross-browser window.onhashchange event.
Questions tagged [jquery-bbq]
81 questions
0
votes
3 answers
jQuery bbq... where's the grill?
I was looking at the jQuery bbq plugin, and couldn't find any mention of document.hash anywhere in his code.
I assume getting the hash is at line 1094:
function get_fragment( url ) {
url = url || location.href;
return '#' + url.replace(…

qwertymk
- 34,200
- 28
- 121
- 184
0
votes
4 answers
how to pass an array of values to $.bbq.pushState
i have a url
http://www.example.com/
and i want to pass an array to $.bbq.pushState
var myCars=new Array();
myCars[0]="Saab";
myCars[1]="Volvo";
myCars[2]="BMW";
how can i pass this array by $.bbq.pushState
please help…

Kanishka Panamaldeniya
- 17,302
- 31
- 123
- 193
0
votes
2 answers
jQuery BBQ - "Access Denied" in IE
I'm running into issues with jQuery BBQ in IE7 and IE8 compatibility mode.
history_set = function( hash, history_hash )
var iframe_doc = iframe.document, //this is the line that the error reports
domain = $.fn[ str_hashchange ].domain;`
I get an…

Jason
- 7,612
- 14
- 77
- 127
0
votes
2 answers
How to use parameters without values with jQuery BBQ plugin?
I need to define and to read hash values like
#page1&filter=1-1-0
#filter=1-1-0 (if page number is omitted)
#page1 (if filter is not defined)
I.e. page number will be part of the parameter and will be without value.
How to work (get and set) with…

LA_
- 19,823
- 58
- 172
- 308
0
votes
1 answer
Which JavaScript hashchange/history library should I use today (2011)?
1) Which JavaScript hashchange/history library/method should I use for my JavaScript application?
2) And how do I achieve these 3 things using that method?
A) When the page loads I want to parse the url hash/parameters and set the initial…

dani
- 4,880
- 8
- 55
- 95
0
votes
1 answer
jQuery BBQ pushState URL is not showing how it's supposed to
i am using the jQuery BBQ plugin, and I cant seem to show the url the way it's supposed to look. It comes like this, /#url=photographs.php%3F1 were it's supposed to be /#url=photographs.php?1
Ideas?

muhamin
- 185
- 1
- 8
0
votes
1 answer
How to remove overlay hashtag and trailing menu from the parent overlay
Lets say for example we have activated contextual links & overlay modules and when clicking the edit button for the node, which is all the way bottom of the page, it open on overlay. Now when we look at the address bar the link now looks something…

Minty
- 1,163
- 11
- 18
0
votes
1 answer
Fragment URL transformation
I have the BBQ plugin working already, so this is just a cosmetic change. I have no idea how to transform the URL from /index.html#pages/index.html to just /index.html#index
It's basically a fragment transformation I guess, but am very new to JS.…

Pepe
- 1
0
votes
1 answer
jQuery BBQ Pretty URLs
I'm using the BBQ jquery plugin for AJAX history management, but I'm having a problem getting 'pretty urls'. I've tried everything I can think of, but hopefully I'm missing something stupid and someone can point me in the right direction.
I'm…

Lee
- 2,993
- 3
- 21
- 27
0
votes
0 answers
Isotope with BBQ
i'm using the following implementation of isotope to include an isotope grid on my wordpress site that filters by tag, using three select menus. This all works great but can anyone give me some guidance on adding the BBQ plugin to enable me to link…

dmt
- 191
- 2
- 21
0
votes
1 answer
Hash location basics
I'm trying to understand how location.hash works in jQuery, for that, I'm trying to begin from the most basic form, and then once I get that right I'd go deeper, but sadly I'm already stuck at what I think should be a simple thing.
Here's my code I…

Dlacrem
- 71
- 3
- 10
0
votes
2 answers
Issue with assigning checkbox int array values to variable
I am trying to implement a filter for my search results.
It is a checkbox which allow user to select one of more options. The issue I am having is that the model does not work properly when more than one option is selected.
My hunch is that the…

Tripping
- 919
- 4
- 18
- 36
0
votes
1 answer
Yii jQuery BBQ error after delete
I am using Yii CGridView. There is delete buttons in a column:
array(
'class'=>'CButtonColumn',
'template' => '{update}{delete}',
'buttons' => array(
'delete' => array(
'imageUrl' => false,
'options' =>…

Justinas
- 41,402
- 5
- 66
- 96
0
votes
1 answer
Trying to connect to the Foursquare API and failing because "Callback uri is not valid for this consumer"
I'm going through Foursquare's tutorial and am getting this error message when I try to load the page:
Connecting failed
This app has a configuration problem and was unable
to connect to your Foursquare account.
Cause of error: Callback uri is…

user374372
- 190
- 2
- 4
- 14
0
votes
1 answer
Isotope shiftColumnOfItem combined with hashHistory - how to?
I'm using Isotope to filter a set of items and JQuery BBQ to handle the hashHistory stuff.
It's working fine, except for the following:
the items are initially collapsed - when clicked, they expand and display more text. But when one of the items…

Lucia
- 21
- 6