How to Change the JQuery Thickbox windows dynamically when the browser windows reduces or increases Please help me to solve this problem
+1
A:
You can change the size of a thickbox window by adding width
and height
parameters in href
attribute of a
element.
Here's an example from Thickbox site that uses that parameters.
RaYell
2009-08-18 11:01:16
I think he needs the thickbox window also to decrease/increase when you open in a resized browser. Try this resize the browser window to 200x200 and click on the same example http://jquery.com/demo/thickbox/#container-4.
kayteen
2009-08-18 11:22:51
I tried ur example it is working when the thickbox is loaded with the resized browser, but i need the thickbox to be changed when the browser is resized
Senthil Kumar Bhaskaran
2009-08-19 09:07:01
You can hook up to the `$(window).resize` event and update the size there
RaYell
2009-08-19 09:26:01